【js与jquery】如何获取选择的下拉菜单的值

<select   name="test" id="type">    
  <option   value="0">请选择</option>
  <option   value="1">第一</option>   
  <option   value="2">第二</option>   
  <option   value="3">第三</option>   
  <option   value="4">第四</option>   
</select>   


若要获取显示值第一 第二 第三之类的

var selectIndex = document.getElementById("type").selectedIndex;//获得是第几个被选中了
var selectText = document.getElementById("type").options[selectIndex].text //获得被选中的项目的文本
alert(selectText);//得到显示的值

jquery实现以上效果:
var selectText=$("#type").val();  


猜你喜欢

转载自blog.csdn.net/jos1n/article/details/76615914