首頁 >web前端 >js教程 >jquery如何讓select選取某個選項的實例詳解

jquery如何讓select選取某個選項的實例詳解

黄舟
黄舟原創
2017-07-28 09:29:484551瀏覽

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