首頁 > web前端 > js教程 > JQuery操作三大控制項(下拉,單選,複選)的方法_jquery

JQuery操作三大控制項(下拉,單選,複選)的方法_jquery

WBOY
發布: 2016-05-16 17:26:30
原創
989 人瀏覽過
複製程式碼 程式碼如下:

Radion



1.取得選中值,三種方法都可以:
$('input:radio:checked').val();
$("input[type='radio']:checked").val();
$("input[name='rd']:checked").val();
2.設定第一個Radio為選取值:
$('input:radio:first'). attr('checked', 'checked');

$('input:radio:first').attr('checked', 'true');
註:attr("checked" ,'checked')= attr("checked", 'true')= attr("checked",true)
3.設定最後一個Radio為選取值:
$('input:radio:last' ).attr('checked', 'checked');

$('input:radio:last').attr('checked', 'true');
4.根據索引值設定任一個radio為選取值:
$('input:radio').eq(索引值).attr('checked', 'true');索引值=0,1,2....

$('input:radio').slice(1,2).attr('checked', 'true');
5.根據Value值設定Radio為選取值
$ ("input:radio[value='rd2']").attr('checked','true');

$("input[value='rd2']").attr(' checked','true');
6.刪除Value值為rd2的Radio
$("input:radio[value='rd2']").remove();
7.刪除第幾個Radio
$("input:radio").eq(索引值).remove();索引值=0,1,2....
如刪除第3個Radio:$(" input:radio").eq(2).remove();
8.遍歷Radio
$('input:radio').each(function(index,domEle){
//寫入代碼
});
DropDownList

1. 取得選取項的Value值:
$('select#sel option:selected').val();

$('select#sel').find('option:selected').val();
取得選取項目的Text值:
$('select#seloption:selected').text( );

$('select#sel').find('option:selected').text();
2. 取得目前選取項目的索引值:
$(' select#sel').get(0).selectedIndex;
3. 取得目前option的最大索引值:
$('select#sel option:last').attr("index")
4. 取得DropdownList的長度:
$('select#sel')[0].options.length;

$('select#sel').get(0).options.length ;
5. 設定第一個option為選取值:
$('select#sel option:first').attr('selected','true')

$(' select#sel')[0].selectedIndex = 0;
6.設定最後一個option為選取值:
$('select#sel option:last).attr('selected','true')
7. 依照索引值設定任一option為選取值:
$('select#sel')[0].selectedIndex =索引值;索引值=0,1,2....
8. 設定Value=4 的option為選取值:
$('select#sel').attr('value','4');

$("select#sel option [value='4']").attr('selected', 'true');
9. 刪除Value=3的option:
$("select#sel option[value='3'] ").remove();
10. 刪除第幾個option:
$(" select#sel option ").eq(索引值).remove();索引值=0,1,2. ...
如刪除第3個Radio:
$(" select#sel option ").eq(2).remove();
11.刪除第一個option:
$ (" select#sel option ").eq(0).remove();

$("select#sel option:first").remove();
12. 刪除最後一個option :
$("select#sel option:last").remove();
13. 刪除dropdownlist:
$("select#sel").remove();
14.在select後面加上一個option:
$("select#sel").append("");
15. 在select前面加上一個option:
$("select#sel").prepend("");
16. 遍歷option:
$(' select#sel option ') .each(function (index, domEle) {
//寫入程式碼
});
CheckBox




1. 取得單一checkbox選中項(三種寫法):
$("input:checkbox:checked").val()

$("input:[type='checkbox']:checked").val( );

$("input:[name='ck']:checked").val();
2. 取得多個checkbox選取項:
$('input: checkbox').each(function() {
if ($(this).attr('checked') ==true) {
alert($(this).val());
}
});
3. 設定第一個checkbox 為選取值:
$('input:checkbox:first').attr("checked",'checked');

$( 'input:checkbox').eq(0).attr("checked",'true');
4. 設定最後一個checkbox為選取值:
$('input:radio:last'). attr('checked', 'checked');

$('input:radio:last').attr('checked', 'true');
5. 根據索引值設定任意一個checkbox為選取值:
$('input:checkbox).eq(索引值).attr('checked', 'true');索引值=0,1,2....
或者
$('input:radio').slice(1,2).attr('checked', 'true');
6. 選取多個checkbox:
同時選取第1個和第2個的checkbox:
$('input:radio').slice(0,2).attr('checked','true');
7. 依照Value值設定checkbox為選取值:
$("input:checkbox[value='1']").attr('checked','true');
8. 刪除Value=1的checkbox:
$("input:checkbox [value='1']").remove();
9. 刪除第幾個checkbox:
$("input:checkbox").eq(索引值).remove();索引值= 0,1,2....
如刪除第3個checkbox:
$("input:checkbox").eq(2).remove();
10.checkbox:
$('input:checkbox').each(function (index, domEle) {
//寫入程式碼
});
11.全部選取
$('input:checkbox' ).each(function() {
$(this).attr('checked', true);
});
12.全部取消選擇:
$('input:checkbox' ).each(function () {
$(this).attr('checked',false);
});
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板