首页  >  文章  >  web前端  >  jquery如何让select选中某个选项的实例详解

jquery如何让select选中某个选项的实例详解

黄舟
黄舟原创
2017-07-28 09:29:484531浏览

jquery如何让select选中某个选项的实例详解

<span id="xx">广州市</span>
<select id="select_id">    
<option>北京市</option>    
<option>广州市</option>    
<option>上海市</option>
</select>

让select 选中 广州市 ?
错误用法: 

$("#select_id option[text=&#39;广州市&#39;]").attr("selected", true); 
<script>
//普通js写法
document.getElementById("select_id").options[1].setAttribute("selected", true);
//jquery应该这样写
$("#select_id option").eq(1).attr("selected",true);
</script>
<script>
   $("#select_id option[value=&#39;广州市&#39;]").attr("selected", true);
</script>
$("#select_id option[text=&#39;广州市&#39;]").attr("selected", "selected");


正确用法:

 $("#select_id")[0].selectedIndex = 1;

jquery如何设置select索引选中,直接用dom操作方式操作索引:

$(&#39;#selectId&#39;).get(0).selectedIndex=index;

用值方式操作索引:

$(&#39;#selectId&#39;).val(&#39;selectIndexValue&#39;);


扩展:
获取当前选中项的value 

$("#select_id").val();

获取当前选中项的text 

$("#select_id").find("option:selected").text();

以上是jquery如何让select选中某个选项的实例详解的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn