重慶分公司,新征程啟航
為企業提供網站建設、域名注冊、服務器等服務
為企業提供網站建設、域名注冊、服務器等服務
jQuery("#select_id").change(function(){}); // 1.為Select添加事件,當選擇其中一項時觸發
創新互聯建站憑借在網站建設、網站推廣領域領先的技術能力和多年的行業經驗,為客戶提供超值的營銷型網站建設服務,我們始終認為:好的營銷型網站就是好的業務員。我們已成功為企業單位、個人等客戶提供了網站建設、做網站服務,以良好的商業信譽,完善的服務及深厚的技術力量處于同行領先地位。
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.設置Select索引值為1的項選中
jQuery("#select_id").val(4); // 2.設置Select的Value值為4的項選中
$("#select_id").attr("value","Normal“);
$("#select_id").get(0).value = value;
//根據select的顯示值來為select設值
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.清空下拉列表
文章標題:jquery關于select框的取值和賦值
本文鏈接:http://www.xueling.net.cn/article/jcjepo.html