Select length 属性
Select 对象的 length 属性可返回下拉列表中选项的数目
语法
selectObject.length= number
浏览器支持
所有主要浏览器都支持 length 属性
范例
显示下拉列表的选项数目
<script> function displayResult(){ alert(document.getElementById("mySelect").length); } </script> <form> <select id="mySelect"> <option>Apple</option> <option>Pear</option> <option>Banana</option> <option>Orange</option> </select> </form> <button type="button" onclick="displayResult()">下拉列表中有多少选项?</button>