jquery操作select 增加,刪除,清空

2021-09-16 13:29:26 字數 3477 閱讀 6777

jquery獲取select選擇的text和value:

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

var checktext=$("#select_id").find("option:selected").text(); //獲取select選擇的text

var checkvalue=$("#select_id").val(); //獲取select選擇的value

var checkindex=$("#select_id ").get(0).selectedindex; //獲取select選擇的索引值

var maxindex=$("#select_id option:last").attr("index"); //獲取select最大的索引值

jquery新增/刪除select的option項:

$("#select_id").prepend("請選擇"); //為select插入乙個option(第乙個位置)

$("#select_id option:last").remove(); //刪除select中索引值最大option(最後乙個)

$("#select_id option[index='0']").remove(); //刪除select中索引值為0的option(第乙個)

$("#select_id option[value='3']").remove(); //刪除select中value='3'的optiona

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

內容清空:

$("#charcity").empty();
每一次操作select的時候,總是要出來翻一下資料,不如自己總結一下,以後就翻這裡了。

比如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());
jquery獲取select選擇的text和value:

語法解釋:

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

var checktext=$("#select_id").find("option:selected").text(); //獲取select選擇的text

var checkvalue=$("#select_id").val(); //獲取select選擇的value

var checkindex=$("#select_id ").get(0).selectedindex; //獲取select選擇的索引值

var maxindex=$("#select_id option:last").attr("index"); //獲取select最大的索引值

jquery設定select選擇的 text和value:

語法解釋:

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

$("#select_id ").val(4); // 設定select的value值為4的項選中

$("#select_id option[text='jquery']").attr("selected", true); //設定select的text值為jquery的項選中

jquery新增/刪除select的option項:

語法解釋:

$("#select_id").prepend("請選擇"); //為select插入乙個option(第乙個位置)

$("#select_id option:last").remove(); //刪除select中索引值最大option(最後乙個)

$("#select_id option[index='0']").remove(); //刪除select中索引值為0的option(第乙個)

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

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

jquery radio取值,checkbox取值,select取值,radio選中,checkbox選中,select選中,及其相關

獲 取一組radio被選中項的值

var item = $(『input[name=items][checked]』).val();

獲 取select被選中項的文字

var item = $(「select[name=items] option[selected]」).text();

select下拉框的第二個元素為當前選中值

$(』#select_id』)[0].selectedindex = 1;

radio單選組的第二個元素為當前選中值

( ′i

nput

[nam

e=it

ems]

′).g

et(1

).ch

ecke

d=tr

ue;獲

取值:文

本框,文

本區域:

('input[name=items]').get(1).checked = true; 獲取值: 文字框,文字區域:

(′inpu

t[na

me=i

tems

]′).

get(

1).c

heck

ed=t

rue;

獲取值:

文字框,

文字區域

使用jquery操作select

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

jquery操作select大全

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

jquery操作 select 物件

jquery select取值,賦值操作 一 獲取select 獲取select 選中的 text ddlregtype find option selected text 獲取select選中的索引 ddlregtype get 0 selectedindex 二 設定select 設定selec...