JS获取下拉框的值方式


例如:  

HTML代码:


一、通过id获取下拉框的value和文本值

1:拿到select对象: var myselect=document.getElementById("numbers");
2:拿到选中项的索引:var index=myselect.selectedIndex ; // selectedIndex代表的是你所选中项的index。
3:拿到选中项options的value: myselect.options[index].value;
4:拿到选中项options的text: myselect.options[index].text;
二、另外还有jquery的方法(前提是已经加载了jquery库):
1:var options=$("#numbers option:selected"); //获取选中的项
2:alert(options.val()); //拿到选中项的值
3:alert(options.text()); //拿到选中项的文本


你可能感兴趣的:(前端知识)