jquery input标签中 中checkbox全部选中与全部取消

checkbox 中 checked属性 值 checked 为选中状态 默认值为空 案例代码如下:

$(function () {
          
            $('#oCheck').click(function () {
            //获取复选框的状态 如果为true 为选中状态,false 为未选中状态
                var is_check = $('#oCheck').is(':checked');
                if (is_check == true) {
                //所有的复选框都选中
                    $('.cks').attr('checked', 'checked');
                }
                else {
                //复选框都不选中
                    $('.cks').attr('checked', '');
                }
            });           
        });

你可能感兴趣的:(jquery input标签中 中checkbox全部选中与全部取消)