jQuery("#select_id").change(function(){}); // 1.為Select添加事件,當(dāng)選擇其中一項時觸發(fā)
創(chuàng)新互聯(lián)建站憑借在網(wǎng)站建設(shè)、網(wǎng)站推廣領(lǐng)域領(lǐng)先的技術(shù)能力和多年的行業(yè)經(jīng)驗,為客戶提供超值的營銷型網(wǎng)站建設(shè)服務(wù),我們始終認(rèn)為:好的營銷型網(wǎng)站就是好的業(yè)務(wù)員。我們已成功為企業(yè)單位、個人等客戶提供了網(wǎng)站建設(shè)、做網(wǎng)站服務(wù),以良好的商業(yè)信譽(yù),完善的服務(wù)及深厚的技術(shù)力量處于同行領(lǐ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<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追加一個Option(下拉項)
jQuery("#select_id").prepend("<option value='請選擇'>請選擇</option>"); // 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.清空下拉列表
新聞標(biāo)題:jquery關(guān)于select框的取值和賦值
文章源于:http://m.rwnh.cn/article30/jcjepo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供關(guān)鍵詞優(yōu)化、網(wǎng)站建設(shè)、App開發(fā)、動態(tài)網(wǎng)站、自適應(yīng)網(wǎng)站、云服務(wù)器
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)