Javascript 参考手册

HTML DOM 对象

Button type 属性

Button 对象

定义和用法

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

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

语法

buttonObject.type=value

type 属性可以是以下值:

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

浏览器支持

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 对象

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号