您的位置:58脚本 > html button type HTML DOM Button type 属性

html button type HTML DOM Button type 属性

2023-04-20 03:32

html button type HTML DOM Button type 属性

html button type HTML DOM Button type 属性

html button type

Button type 属性

Button 对象参考手册 Button 对象

定义和用法

type 属性可设置或者返回按钮的类型。

提示: 请始终为按钮规定 type 属性。IE 浏览器的默认类型是 "button",而在其他浏览器中(以及在 W3C 规范中)是 "submit"。

语法

buttonObject.type=value

type 属性可以是以下值:

描述
submit button 是提交按钮(是 IE 之外的所有浏览器的默认值)
button button 是可点击的按钮(IE 的默认值)
reset button 是重置按钮(清除表单数据)


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 type 属性。


实例

实例

返回按钮的类型:

<html>
<head>
<script>
function alertType()
{
alert(document.getElementById("myButton").type)
}
</script>
</head>
<body>

<button id="myButton" type="button" onclick="alertType()">Click Me!</button>

</body>
</html>



Button 对象参考手册 Button 对象
阅读全文
以上是58脚本为你收集整理的html button type HTML DOM Button type 属性全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 58脚本 58jiaoben.com 版权所有 联系我们
桂ICP备12005667号-28 Powered by CMS