1、設定value為pxx的項選中
$(".selector").val("pxx");
2、設定text為pxx的項選中
$(".selector").find("option[text='pxx']").attr("selected",true);
這裡有乙個中括號的用法,中括號裡的等號的前面是屬性名稱,不用加引號。很多時候,中括號的運用可以使得邏輯變得很簡單。
3、獲取當前選中項的value
$(".selector").val();
4、獲取當前選中項的text
$(".selector").find("option:selected").text();
這裡用到了冒號,掌握它的用法並舉一反三也會讓**變得簡潔。
很多時候用到select的級聯,即第二個select的值隨著第乙個select選中的值變化。這在jquery中是非常簡單的。
如:$(".selector1").change(function());
});})
html:
選項1選項2
選項3選項4
選項5選項6
選項7選中新增到右邊》
全部新增到右邊》
《選中刪除到左邊
《全部刪除到左邊
jquery 取得select的數量
option 數量吧 select name cmt option size 想獲得元素數量直接用 select name cmt size 指定name的select select size 不指定name 的所有select 1 通過標籤過濾器獲取select物件組 1 varsels sele...
jQuery 取得select選中的值
關於jquery取得select的值 例子 selected true web 客戶端開發技術 計算機網路管理 網路程式設計技術 net j a ee應用開發 資訊保安工程 網路與安全綜合設計 若想取得select選中項的value值 兩種方式 1.coursename option selecte...
jQuery取得select選擇的文字與值
jquery獲取select選擇的文字與值 獲取select 獲取select 選中的 text ddlregtype find option selected text 獲取select選中的 value ddlregtype val 獲取select選中的索引 ddlregtype get 0 ...