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è)信譽,完善的服務(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 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ǎng)站題目:jquery關(guān)于select框的取值和賦值
標(biāo)題來源:http://weahome.cn/article/jcjepo.html