欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM type 屬性

定義和用法

type 屬性可返回表單元素的類(lèi)型。Button 對(duì)象的類(lèi)型始終是 "button"。

語(yǔ)法

buttonObject.type

實(shí)例

下面的例子將返回按鈕的表單元素類(lèi)型:

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

<body>
<form>
<input type="button" value="Click me!" id="myButton"
onclick="alertType()" />
</form>
</body>

</html>