用jquery和js获取select标签中选中的option值及文本

用jquery和js获取select标签中选中的option值及文本


jquery:

用jquery和js获取select标签中选中的option值及文本
//获取选中的option的文本值
$("#id option:selected").text();  
$("#id").find("option:selected").text()

//获取select中option的被选中的value值
$("#id").val(); 
$("#id option:selected").val();
$("#id").find("option:selected").val()
用jquery和js获取select标签中选中的option值及文本

js:

var sel=document.getElementById("id"); 
var index = sel.selectedIndex; // 选中索引
sel.options[index].value;//要的值
sel.options[index].text;//要的文本
上一篇:12大pandas配置技巧


下一篇:Option键有哪些妙用?盘点Option键在Mac中的使用小技巧