JSP页面获取下来框select选中项的值和文本的方法
<select id="username" name="">
<option value="1">jyy</option>
<option value="2">abc</option>
</select>
code:
一:javascript方法
var mySelect=document.getElementById("username");
var index=myselect.selectedIndex ;
选中项的value: myselect.options[index].value;
选中项的text: myselect.options[index].text;
二:jquery方法(前提是已经加载了jquery库)
var options=$("#test option:selected");
选中项的value:alert(options.val());
选中项的text:alert(options.text());
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。