HTML DOM type ÊôÐÔ
¶¨ÒåºÍÓ÷¨
type ÊôÐÔ¿É·µ»ØÏÂÀÁбíµÄ±íµ¥ÀàÐÍ¡£¶ÔÓÚÏÂÀÁÐ±í£¬ÀàÐÍ×ÜÊÇ "select-one" »ò "select-multiple"¡£
Óï·¨
selectObject.type
ʵÀý
ÏÂÃæµÄÀý×Ó·µ»ØÏÂÀÁбíµÄ±íµ¥ÀàÐÍ£º
<html>
<head>
<script type="text/javascript">
function getType()
{
alert(document.getElementById("mySelect").type
)
}
</script>
</head>
<body>
<form>
<select id="mySelect">
<option>Apple</option>
<option>Pear</option>
<option>Banana</option>
<option>Orange</option>
</select>
<input type="button" onclick="getType()"
value="Alert type of dropdown list">
</form>
</body>
</html>