HTML DOM type ÊôÐÔ
¶¨ÒåºÍÓ÷¨
type ÊôÐÔ¿É·µ»ØÖØÖð´Å¥µÄ±íµ¥ÔªËØÀàÐÍ¡£¶ÔÓÚÈ·Èϰ´Å¥£¬¸ÃÊôÐÔ×ÜÊÇ "reset"¡£
Óï·¨
resetObject.type
ʵÀý
ÏÂÃæµÄÀý×Ó¿É·µ»ØÖØÖð´Å¥µÄ±íµ¥ÔªËØÀàÐÍ£º
<html>
<head>
<script type="text/javascript">
function alertType()
{
alert(document.getElementById("reset1").type
)
}
</script>
</head>
<body>
<form>
<input type="reset" id="reset1" onclick="alertType()" />
</form>
</body>
</html>