HTML DOM type ÊôÐÔ
¶¨ÒåºÍÓ÷¨
type ÊôÐÔ¿É·µ»Ø±íµ¥ÔªËصÄÀàÐÍ¡£Button ¶ÔÏóµÄÀàÐÍʼÖÕÊÇ "button"¡£
Óï·¨
buttonObject.type
ʵÀý
ÏÂÃæµÄÀý×Ó½«·µ»Ø°´Å¥µÄ±íµ¥ÔªËØÀàÐÍ£º
<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>