Button type 屬性
Button 對象定義和用法
type 屬性可設(shè)置或者返回按鈕的類型。
提示: 請始終為按鈕規(guī)定 type 屬性。IE 瀏覽器的默認(rèn)類型是 "button",而在其他瀏覽器中(以及在 W3C 規(guī)范中)是 "submit"。
語法
buttonObject.type=value
type 屬性可以是以下值:
值 | 描述 |
---|---|
submit | button 是提交按鈕(是 IE 之外的所有瀏覽器的默認(rèn)值) |
button | button 是可點(diǎn)擊的按鈕(IE 的默認(rèn)值) |
reset | button 是重置按鈕(清除表單數(shù)據(jù)) |
瀏覽器支持
所有主要瀏覽器都支持 type 屬性。
實(shí)例
實(shí)例
返回按鈕的類型:
<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>
<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 對象
更多建議: