JavaScript 獲取select下拉選單所有option

admin發表於2017-03-23

本章節介紹一下如何獲取select下拉選單中所有的option項。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script type="text/javascript"> 
window.onload=function(){
  var oshow=document.getElementById("show");
  var osel=document.getElementById("sel");
  var opts=osel.options;
  oshow.innerHTML=opts.length;
}
</script> 
</head>
<body> 
<div id="show"></div>
<select id="sel"> 
  <option value="1">螞蟻部落一</option> 
  <option value="2">螞蟻部落二</option> 
  <option value="3">螞蟻部落三</option> 
</select> 
</body> 
</html>

以上程式碼可以獲取select下拉選單中所有的option項的數目。

相關文章