HTML DOM length ÊôÐÔ

¶¨ÒåºÍÓ÷¨

length ÊôÐÔ¿É·µ»ØÏÂÀ­ÁбíÖÐÑ¡ÏîµÄÊýÄ¿¡£

Óï·¨

selectObject.length=number

ʵÀý

ÏÂÃæµÄÀý×Ó¿É·µ»ØÏÂÀ­ÁбíµÄ id£º

<html>
<head>
<script type="text/javascript">
function getLength()
  {
  alert(document.getElementById("mySelect").length)
  }
</script>
</head>
<body>

<form>
<select id="mySelect">
  <option>Apple</option>
  <option>Pear</option>
  <option>Banana</option>
  <option>Orange</option>
</select>
<input type="button" onclick="getLength()"
value="How many options in the list?">
</form>

</body>
</html>
VUE