1、取得單一checkbox選取項(三種寫法)
$("input:checkbox:checked").val()
或
$("input: [type='checkbox']:checked").val();
或
$("input:[name='ck']:checked").val();
2、 取得多個checkbox選取項
$('input:checkbox').each(function() {
attr($(this).attr('checked' ) ==true) {
alert($(this).val());
}
););>
3、設定第一個checkbox 為選取值
$('input:checkbox:first').attr("checked",'checked');
或
4、設定最後一個checkbox為選取值
$('input:radio:last').attr('checked', 'checked');
或
5、根據索引值設定任一checkbox為選取值
$('input:checkbox).eq(索引值).attr('checked', 'true');索引值=0,1,2....
或
6、選取多個checkbox同時選取第1個與第2個的checkbox
7、依Value值設定checkbox為選取值
8、刪除Value=1的checkbox
9、刪除第幾個checkbox
$("input:checkbox").eq(索引值).remove();索引值=0,1,2....
如刪除第3個checkbox:
10、遍歷checkbox
$('input:checkbox').each(function (index, domEle) {
//寫入程式碼
11、全部選取
$('input:checkbox').each(function() {
$(this).attr('checked', true $(this).attr('checked', true);
12、全部取消選擇
$('input:checkbox').each(function () {
$(this).attr('checked',false);