<select id="selector"></select> 1、設置value為pxx的項選中 $("#selector").val("xxx"); 2、設置text為pxx的項選中 $("#selector").find("option[text='xxx']").attr("selected ...
<select id="selector"></select>
1、設置value為pxx的項選中
$("#selector").val("xxx");
2、設置text為pxx的項選中
$("#selector").find("option[text='xxx']").attr("selected",true);
這裡有一個中括弧的用法,中括弧里的等號的前面是屬性名稱,不用加引號。很多時候,中括弧的運用可以使得邏輯變得很簡單。
3、獲取當前選中項的value
$("#selector").val();
4、獲取當前選中項的text
$("#selector").find("option:selected").text();
這裡用到了冒號,掌握它的用法並舉一反三也會讓代碼變得簡潔。
很多時候用到select的級聯,即第二個select的值隨著第一個select選中的值變化。這在jQuery中是非常簡單的。
如:$("#selector1").change(function(){
// 先清空第二個
$("#selector2").empty();
// 實際的應用中,這裡的option一般都是用迴圈生成多個了
var option = $("<option>").val(1).text("pxx");
$("#selector2").append(option);
});