SOURCE

console 命令行工具 X clear

                    
>
console
function getLength()
  {
  alert(document.getElementById("mySelect").length)
  }
<form> 
  <select id="mySelect"> <option>苹果</option> <option>桃子</option> <option>香蕉</option> <option>桔子</option> </select> 
  <input type="button" onclick="getLength()" value="在这个列表中,有多少选项?"> 
 </form>