jquery select 選中問題w

2021-08-01 03:32:41 字數 531 閱讀 8693

--請選擇主營範圍--

heheh

heheh1

heheh2

heheh3

$("#business_scope option[value='1']").attr("selected", true); //是能把value 為1的選項設定為選擇

$("#business_scope option[text='heheh']").attr("selected", true);//是不能把text = 'heheh' 的選項選中

$("#business_scope option:contains('heheh2')").attr('selected', true);//是可以把text = 'heheh2' 的選項選中 但是把所有 包含'heheh2的值都會命中,代替的**可以這樣:

$("#business_scope option:contains('heheh')").map(function()});

jQuery select 選中問題

每一次操作select的時候,總是要出來翻一下資料,不如自己總結一下,以後就翻這裡了。比如 1 設定value為pxx的項選中 selector val pxx 2 設定text為pxx的項選中 selector find option text pxx attr selected true 這裡有...

jQuery select獲取選中的值資料記錄

一 query獲取select選擇的text和value 1.為select新增事件,當選擇其中一項時觸發 select id change function 2.獲取select選擇的text var checktext select id find option selected text 3....

Jquery select 元素操作

設定值為0的option 移除 id option value 0 remove 設定索引值為0的option選中 id get 0 selectedindex 0 獲取select 選中的 text ddlregtype find option selected text 獲取select選中的 ...