2. var checktext=$("#select_id").find("option:selected").text(); //獲取select選擇的text
3. var checkvalue=$("#select_id").val(); //獲取select選擇的value
4. var checkindex=$("#select_id ").get(0).selectedindex; //獲取select選擇的索引值
5. var maxindex=$("#select_id option:last").attr("index"); //獲取select最大的索引值
2. $("#select_id ").val(4); //設定select的value值為4的項選中
3. $("#select_id option[text='jquery']").attr("selected", true); //設定select的text值為jquery的項選中
2. $("#select_id").prepend("請選擇"); //為select插入乙個option(第乙個位置)
3. $("#select_id option:last").remove(); //刪除select中索引值最大option(最後乙個)
4. $("#select_id option[index='0']").remove(); //刪除select中索引值為0的option(第乙個)
5. $("#select_id option[value='3']").remove(); //刪除select中value='3'的option
6. $("#select_id option[text='4']").remove(); //刪除select中text='4'的option
var len=item.length;
if(len==0) else
radio選中:
$("input[name=test][value=34]").attr("checked",true);//value=34的radio被選中
$("input[id=testid][value=34]").attr("checked",true);//value=34的radio被選中
functionreplacestr(text,tag,oldstr,newstr)
}return
text;
}
作用是:用newstr替換text中tag標籤內的oldstr,其中oldstr可以是unicode編碼
jquery對select下拉框的基本操作大全
四級分類 請選擇四級分類 if thirdlevel val 0 if fourthlevelid val 0 這個表示 假如我們希望當選擇選擇第三類時 如果第四類中有資料則刪除,如果沒有資料第四類的商品中的為預設值。在後面學習了ajax技術後經常會使用到!獲取select 獲取select 選中的...
jQuery 對 Select 的操作
取得下拉列表的選取值 testselect option selected text 或 testselect find option selected text 或 testselect val 記性不好的可以收藏下 1,下拉框 稍微解釋一下 1.select name country optio...
jQuery對select的操作
獲取select 獲取select 選中的 text selectid find option selected text 獲取select選中的 value selectid val 獲取select選中的索引 selectid get 0 selectedindex 設定select 設定sel...