jquery操作select(增加,刪除,清空)

來源:互聯網
上載者:User

標籤:

jquery操作select(增加,刪除,清空)  

http://huapengpeng1989412.blog.163.com/blog/static/58828754201342841940720/

 jQuery擷取Select選擇的Text和Value: 

123456789 $("#select_id").change(function(){//code...}); //為Select添加事件,當選擇其中一項時觸發 var checkText=$("#select_id").find("option:selected").text(); //擷取Select選擇的text var checkValue=$("#select_id").val(); //擷取Select選擇的Value var checkIndex=$("#select_id ").get(0).selectedIndex; //擷取Select選擇的索引值 var maxIndex=$("#select_id option:last").attr("index"); //擷取Select最大的索引值

jQuery添加/刪除Select的Option項: 

1234567891011 $("#select_id").append("<option value=‘Value‘>Text</option>"); //為Select追加一個Option(下拉項) $("#select_id").prepend("<option value=‘0‘>請選擇</option>"); //為Select插入一個Option(第一個位置) $("#select_id option:last").remove(); //刪除Select中索引值最大Option(最後一個) $("#select_id option[index=‘0‘]").remove(); //刪除Select中索引值為0的Option(第一個) $("#select_id option[value=‘3‘]").remove(); //刪除Select中Value=‘3‘的Optiona $("#select_id option[text=‘4‘]").remove(); //刪除Select中Text=‘4‘的Optiona

內容清空:

1 $("#charCity").empty();

 

http://blog.csdn.net/nairuohe/article/details/6307367

每一次操作select的時候,總是要出來翻一下資料,不如自己總結一下,以後就翻這裡了。

比如<select class="selector"></select>

1、設定value為pxx的項選中

     $(".selector").val("pxx");

2、設定text為pxx的項選中

    $(".selector").find("option[text=‘pxx‘]").attr("selected",true);

    這裡有一個中括弧的用法,中括弧裡的等號的前面是屬性名稱,不用加引號。很多時候,中括弧的運用可以使得邏輯變得很簡單。

3、擷取當前選中項的value

    $(".selector").val();

4、擷取當前選中項的text

    $(".selector").find("option:selected").text();

    這裡用到了冒號,掌握它的用法並舉一反三也會讓代碼變得簡潔。

 

很多時候用到select的級聯,即第二個select的值隨著第一個select選中的值變化。這在jquery中是非常簡單的。

如:

$(".selector1").change(function(){     // 先清空第二個      $(".selector2").empty();     // 實際的應用中,這裡的option一般都是用迴圈產生多個了      var option = $("<option>").val(1).text("pxx");      $(".selector2").append(option);});

 

http://www.cnblogs.com/yaoshiyou/archive/2010/08/24/1806939.html

jQuery擷取Select選擇的Text和Value:
文法解釋:

$("#select_id").change(function(){//code...});   //為Select添加事件,當選擇其中一項時觸發var checkText=$("#select_id").find("option:selected").text();  //擷取Select選擇的Textvar checkValue=$("#select_id").val();  //擷取Select選擇的Valuevar checkIndex=$("#select_id ").get(0).selectedIndex;  //擷取Select選擇的索引值var maxIndex=$("#select_id option:last").attr("index");  //擷取Select最大的索引值


jQuery設定Select選擇的 Text和Value:
文法解釋:

$("#select_id ").get(0).selectedIndex=1;  //設定Select索引值為1的項選中$("#select_id ").val(4);   // 設定Select的Value值為4的項選中$("#select_id option[text=‘jQuery‘]").attr("selected", true);   //設定Select的Text值為jQuery的項選中

 

jQuery添加/刪除Select的Option項:
文法解釋:

$("#select_id").append("<option value=‘Value‘>Text</option>");  //為Select追加一個Option(下拉項)$("#select_id").prepend("<option value=‘0‘>請選擇</option>");  //為Select插入一個Option(第一個位置)$("#select_id option:last").remove();  //刪除Select中索引值最大Option(最後一個)$("#select_id option[index=‘0‘]").remove();  //刪除Select中索引值為0的Option(第一個)$("#select_id option[value=‘3‘]").remove();  //刪除Select中Value=‘3‘的Option$("#select_id option[text=‘4‘]").remove();  //刪除Select中Text=‘4‘的Option

 

http://www.cnblogs.com/SAL2928/archive/2008/10/28/1321285.html

jquery radio取值,checkbox取值,select取值,radio選中,checkbox選中,select選中,及其相關 
獲 取一組radio被選中項的值 
var item = $(‘input[name=items][checked]‘).val(); 
獲 取select被選中項的文本 
var item = $("select[name=items] option[selected]").text(); 
select下拉框的第二個元素為當前選中值 
$(‘#select_id‘)[0].selectedIndex = 1; 
radio單選組的第二個元素為當前選中值 
$(‘input[name=items]‘).get(1).checked = true; 
擷取值: 
文字框,文本地區:$("#txt").attr("value"); 
多選框 checkbox:$("#checkbox_id").attr("value"); 
單選組radio:   $("input[type=radio][checked]").val(); 
下拉框select: $(‘#sel‘).val(); 
控製表單元素: 
文字框,文本地區:$("#txt").attr("value",‘‘);//清空內容 
$("#txt").attr("value",‘11‘);//填充內容 
多選框checkbox: $("#chk1").attr("checked",‘‘);//不打勾 
$("#chk2").attr("checked",true);//打勾 
if($("#chk1").attr(‘checked‘)==undefined) //判斷是否已經打勾 
單選組 radio:    $("input[type=radio]").attr("checked",‘2‘);//設定value=2的項目為當前選中項 
下拉框 select:   $("#sel").attr("value",‘-sel3‘);//設定value=-sel3的項目為當前選中項 
$("<option value=‘1‘>1111</option><option value=‘2‘>2222</option>").appendTo("#sel")//添加下拉框的option 
$("#sel").empty();//清空下拉框

jquery操作select(增加,刪除,清空)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.