Jquery獲取select選中的文本與值


jquery獲取select選擇的文本與值
獲取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();


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM