jQuery操作Select

來源:互聯網
上載者:User

標籤:des   strong   io   cti   html   代碼   div   ar   

jQuery是如何控制和操作select的。先看下面的html代碼

 

<select id="test">
<option value="1">選項一<option>
<option value="2">選項一<option>
...
<option value="n">選項N<option>
</select>

所謂jQuery操作“select”, 說的更確切一些是應該是jQuery控制 “option”, 看下面的jQuery代碼:


//擷取第一個option的值
$(‘#test option:first‘).val();

//最後一個option的值
$(‘#test option:last‘).val();

//擷取第二個option的值
$(‘#test option:eq(1)‘).val();

//擷取選中的值
$(‘#test‘).val();
$(‘#test option:selected‘).val();

//設定值為2的option為選中狀態
$(‘#test‘).attr(‘value‘,‘2‘);

//設定最後一個option為選中
$(‘#test option:last‘).attr(‘selected‘,‘selected‘);
$("#test").attr(‘value‘ , $(‘#test option:last‘).val());
$("#test").attr(‘value‘ , $(‘#test option‘).eq($(‘#test option‘).length - 1).val());

//擷取select的長度
$(‘#test option‘).length;

//添加一個option
$("#test").append("<option value=‘n+1‘>第N+1項</option>");
$("<option value=‘n+1‘>第N+1項</option>").appendTo("#test");

//添除選中項
$(‘#test option:selected‘).remove();

//刪除項選中(這裡刪除第一項)
$(‘#test option:first‘).remove();、

//指定值被刪除
$(‘#test option‘).each(function(){
if( $(this).val() == ‘5‘){
$(this).remove();
}
});
$(‘#test option[value=5]‘).remove();

//擷取第一個Group的標籤
$(‘#test optgroup:eq(0)‘).attr(‘label‘);

//擷取第二group下面第一個option的值
$(‘#test optgroup:eq(1) : option:eq(0)‘).val();

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.