jQuery的Select操作集合

2022-03-31 01:37:37 字數 1143 閱讀 6415

jquery獲取select選擇的text和value:

語法解釋:

1. $("#select_id").change(function());    //為select新增事件,當選擇其中一項時觸發

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最大的索引值

jquery設定select選擇的text和value:

語法解釋:

1. $("#select_id ").get(0).selectedindex=1;   //設定select索引值為1的項選中

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

5. $("#select_id option[text='4']").remove();   //刪除select中text='4'的option

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...

jquery 對select的操作

如題。使用js直接操作select。一般會使用到下面的幾個命令 var tmp document.getelementbyid select 建立option方法1 var tmpop document.createelementbytagname option tmp.value 1 建立opti...