JQuery获取select选中的value
Posted 幽默是一种心情
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQuery获取select选中的value相关的知识,希望对你有一定的参考价值。
获取select :
1.获取select 选中的 text :
$("#ddlregtype").find("option:selected").text();
2.获取select选中的 value:
$("#ddlregtype ").val();
3.获取select选中的索引:
$("#ddlregtype ").get(0).selectedindex;
设置select:
1.设置select 选中的索引:
$("#ddlregtype ").get(0).selectedindex=index;//index为索引值
2.设置select 选中的value:
$("#ddlregtype ").attr("value","normal“);
$("#ddlregtype ").val("normal");
$("#ddlregtype ").get(0).value = value;
3.设置select 选中的text:
var count=$("#ddlregtype option").length;
for(var i=0;i<count;i++)
{ if($("#ddlregtype ").get(0).options[i].text == text)
{
$("#ddlregtype ").get(0).options[i].selected = true;
break;
}
}
$("#select_id option[text=‘jquery‘]").attr("selected", true);
清空 select:
$("#ddlregtype ").empty();
参考:http://blog.csdn.net/tiemufeng1122/article/details/44154571
以上是关于JQuery获取select选中的value的主要内容,如果未能解决你的问题,请参考以下文章
转jQuery获取Select option 选择的Text和Value