js如何获取下拉列表值与元素个数

发布时间:2020-06-27编辑:脚本学堂
本文介绍了js获取下拉列表值与元素个数的方法,用js代码取得下拉列表中的值与元素,感兴趣的朋友可以参考下。

例子,js获取下拉列表框元素个数。
 

复制代码 代码示例:
<!DOCTYPE html>
<html>
<head>
<script>
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>