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>
VUE