js獲取當前select下拉選單選中項的值

admin發表於2017-03-23

select下拉選單是最為常用的表單元素之一,本章節介紹一下如何獲取當前選中項的值。

程式碼例項如下:

[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 obtn=document.getElementById("btn");
  obtn.onclick=function(){
    var osel=document.getElementById("sel");
    alert(osel.options[osel.selectedIndex].value)
  }
}
</script> 
</head>
<body> 
<select id="sel"> 
  <option value="1">螞蟻部落一</option> 
  <option value="2" selected>螞蟻部落二</option> 
  <option value="3">螞蟻部落三</option> 
</select> 
<button id="btn">檢視效果</button> 
</body> 
</html>

以上程式碼實現了我們的要求,更多相關內容可以參閱javascript動態操作select下拉選單一章節。 

相關文章