jQuery("#select_id").change(function(){}); // 1.為Select添加事件,當(dāng)選擇其中一項時觸發(fā)
創(chuàng)新互聯(lián),專注為中小企業(yè)提供官網(wǎng)建設(shè)、營銷型網(wǎng)站制作、響應(yīng)式網(wǎng)站、展示型成都網(wǎng)站設(shè)計、網(wǎng)站建設(shè)等服務(wù),幫助中小企業(yè)通過網(wǎng)站體現(xiàn)價值、有效益。幫助企業(yè)快速建站、解決網(wǎng)站建設(shè)與網(wǎng)站營銷推廣問題。var checkValue = jQuery("#select_id").val(); // 2.獲取Select選中項的Value
var checkText = jQuery("#select_id :selected").text(); // 3.獲取Select選中項的Text
var checkIndex = jQuery("#select_id").attr("selectedIndex");// 4.獲取Select選中項的索引值,
或者: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的項選中
jQuery("#select_id").val(4); // 2.設(shè)置Select的Value值為4的項選中
$("#select_id").attr("value","Normal“);
$("#select_id").get(0).value = value;
//根據(jù)select的顯示值來為select設(shè)值
var count=$("#select_id").get(0).options.length;
for(var i=0;i if($("#select_id").get(0).options[i].text == text) { $("#select_id").get(0).options[i].selected = true; break; } } jQuery("#select_id").append(""); // 1.為Select追加一個Option(下拉項) jQuery("#select_id").prepend(""); // 2.為Select插入一個Option(第一個位置) jQuery("#select_id").get(0).remove(1); // 3.刪除Select中索引值為1的Option(第二個) jQuery("#select_id :last").remove(); // 4.刪除Select中索引值大Option(最后一個) jQuery("#select_id [value='3']").remove(); // 5.刪除Select中Value='3'的Option jQuery("#select_id").empty(); // 6.清空下拉列表 另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
本文題目:jquery關(guān)于select框的取值和賦值-創(chuàng)新互聯(lián)
文章起源:http://weahome.cn/article/ehhgj.html