HTML DOM Type ÊôÐÔ
¶¨ÒåºÍÓ÷¨
type ÊôÐÔ¿É·µ»Ø±íµ¥ÔªËصÄÀàÐÍ¡£¶ÔÓÚ hidden ¶ÔÏ󣬸ÃÊôÐÔ×ÜÊÇ "hidden"¡£
Óï·¨
hiddenObject.type
ʵÀý
ÏÂÃæµÄÀý×Ó·µ»ØÁ˸ÃÒþ²ØÓòµÄ±íµ¥ÔªËØÀàÐÍ£º
<html>
<body>
<form>
<input type="hidden" id="hidden1" />
</form>
<script type="text/javascript">
x=document.getElementById("hidden1");
document.write("Form element type is: ");
document.write(x.type);
</script>
</body>
</html>