首页 > 编程 > JavaScript > 正文

js获取下拉列表的值和元素个数示例

2019-11-20 20:43:30
字体:
来源:转载
供稿:网友

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>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表