码迷,mamicode.com
首页 > Web开发 > 详细

js获取select下拉框中的值

时间:2018-11-16 17:32:17      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:用户   vip   doc   cte   ext   color   code   pre   style   

现在有一id为userType的下拉框,怎么获取选中的值:

1  用户类型:
2  <select name="type" id="userType">
3     <option value="0">请选择</option>
4     <option value="1">普通类型</option>
5     <option value="2">VIP类型</option>
6</select>        

js操作:

1 var myType = document.getElementById("userType");//获取select对象
2 var index = myType.selectedIndex; //获取选项中的索引,selectIndex表示的是当前所选中的index
3 myType.options[index].value;//获取选项中options的value值
4 myType.options[index].text;//获取选项中options的value值

js获取select下拉框中的值

标签:用户   vip   doc   cte   ext   color   code   pre   style   

原文地址:https://www.cnblogs.com/xiaovw/p/9969873.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!