Button type 属性

返回上一级

Button 对象的 type 属性用于设置或者返回按钮的类型

请始终为按钮规定 type 属性

因为 IE 浏览器的默认类型是 "button",而在其它浏览器中(以及在 W3C 规范中)是 "submit"

语法

buttonObject.type= "value"

type 属性可以是以下值

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

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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

范例

返回按钮的类型

<script>
function alertType()
{
alert(document.getElementById("myButton").type)
}
</script>
<button id="myButton" type="button" onclick="alertType()">Click Me!</button>

运行范例 »

返回上一级

JavaScript 参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.