溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

jquery關(guān)于select框的取值和賦值

發(fā)布時(shí)間:2020-05-18 09:41:35 來(lái)源:網(wǎng)絡(luò) 閱讀:329 作者:365850153 欄目:web開發(fā)

jQuery("#select_id").change(function(){}); // 1.為Select添加事件,當(dāng)選擇其中一項(xiàng)時(shí)觸發(fā)     

var checkValue = jQuery("#select_id").val(); // 2.獲取Select選中項(xiàng)的Value  

var checkText = jQuery("#select_id :selected").text(); // 3.獲取Select選中項(xiàng)的Text   

var checkIndex = jQuery("#select_id").attr("selectedIndex");// 4.獲取Select選中項(xiàng)的索引值,

或者:jQuery("#select_id").get(0).selectedIndex;  

var maxIndex = jQuery("#select_id :last").attr("index");  // 5.獲取Select最大的索引值,

或者:jQuery("#select_id :last").get(0).index;

 

jQuery("#select_id").get(0).selectedIndex = 1; // 1.設(shè)置Select索引值為1的項(xiàng)選中  

jQuery("#select_id").val(4);  // 2.設(shè)置Select的Value值為4的項(xiàng)選中

$("#select_id").attr("value","Normal“);

$("#select_id").get(0).value = value;

//根據(jù)select的顯示值來(lái)為select設(shè)值

var count=$("#select_id").get(0).options.length;

for(var i=0;i<count;i++){

if($("#select_id").get(0).options[i].text == text)  

{

$("#select_id").get(0).options[i].selected = true;          

break;  

}  

}

 

jQuery("#select_id").append("<option value='新增'>新增option</option>"); // 1.為Select追加一個(gè)Option(下拉項(xiàng))   

jQuery("#select_id").prepend("<option value='請(qǐng)選擇'>請(qǐng)選擇</option>"); // 2.為Select插入一個(gè)Option(第一個(gè)位置)  

jQuery("#select_id").get(0).remove(1);  // 3.刪除Select中索引值為1的Option(第二個(gè))  

jQuery("#select_id :last").remove();  // 4.刪除Select中索引值最大Option(最后一個(gè))   

jQuery("#select_id [value='3']").remove(); // 5.刪除Select中Value='3'的Option   

jQuery("#select_id").empty();   // 6.清空下拉列表  


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI