checkbox的相關知識點

2022-05-09 10:00:09 字數 1323 閱讀 1794

1、獲取單個checkbox選中項(三種寫法)

$("input:checkbox:checked").val()

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

或者$("input:[name='ck']:checked").val();

2、 獲取多個checkbox選中項

$('input:checkbox').each(function() 

});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() );

12、全部取消選擇

$('input:checkbox').each(function () );

相關知識點

nweb inf uclasses uweb.xml ulib n 從httpservlet 繼承,重寫doget dopost方法 n部署web.xml n 只有乙個物件 n 第一次請求的時候被初始化,只一遍 n 初始化後先呼叫init 方法,只一遍 n 每個請求,呼叫一遍service serv...

Camera相關知識點

1 camera涉及到的概念 1.1 preview capture video preview 預覽 capture 拍照 video 錄影 1.2 幀率 快門 幀率 frame rate 用於測量顯示幀數的量度。所謂的顯示單位為每秒顯示的幀數,簡稱fps或hz 快門 shutter。快門是攝像器...

CURL相關知識點

1,建立乙個curl的會話資源 ch curl init 設定url,引數傳遞出來的時候 curl setopt ch,curlopt url,url 使用post提交的資料 curl setopt ch,curlopt post,1 if post data 設定是否將響應結果存入變數,1或者tr...