HTML DOM type ÊôÐÔ
¶¨ÒåºÍÓ÷¨
type ÊôÐÔ·µ»Ø±íµ¥ÔªËصÄÀàÐÍ¡£¶ÔÓÚ text area£¬ÓÀÔ¶ÊÇ "textarea"¡£
Óï·¨
textareaObject.type
ʵÀý
±¾Àý·µ»Ø textarea ÔªËØËùÊôµÄ±íµ¥ÀàÐÍ£º
<html>
<head>
<script type="text/javascript">
function alertType()
{
alert(document.getElementById('txt1').type
);
}
</script>
</head>
<body>
<textarea id="txt1">
Hello world....This is a text area
</textarea>
<br />
<input type="button" onclick="alertType()" value="Alert type" />
</body>
</html>