DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery 獲取和設置select下拉框的值實現代碼
jQuery 獲取和設置select下拉框的值實現代碼
編輯:JQuery特效代碼     

獲取Select :

獲取select 選中的 text :

$("#ddlRegType").find("option:selected").text();


獲取select選中的 value:

$("#ddlRegType ").val();


獲取select選中的索引:

$("#ddlRegType ").get(0).selectedIndex;


設置select:

設置select 選中的索引:

$("#ddlRegType ").get(0).selectedIndex=index;//index為索引值


設置select 選中的value:

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

    $("#ddlRegType ").val("Normal");

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


設置select 選中的text:

var count=$("#ddlRegType option").length;

  for(var i=0;i<count;i++) 
     {           if($("#ddlRegType ").get(0).options[i].text == text) 
        { 
            $("#ddlRegType ").get(0).options[i].selected = true; 

            break; 
        } 
    }

$("#select_id option[text='jQuery']").attr("selected", true);


設置select option項:

 $("#select_id").append("<option value='Value'>Text</option>");  //添加一項option

 $("#select_id").prepend("<option value='0'>請選擇</option>"); //在前面插入一項option

 $("#select_id option:last").remove(); //刪除索引值最大的Option

 $("#select_id option[index='0']").remove();//刪除索引值為0的Option

 $("#select_id option[value='3']").remove(); //刪除值為3的Option

 $("#select_id option[text='4']").remove(); //刪除TEXT值為4的Option
 

清空 Select:

$("#ddlRegType ").empty();

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved