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());
}
});
或
('input:checkbox').map(function () {
return(this).val();
}).get().join(',') ;
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);
});