Jquery选择所有如果没有禁用 [英] Jquery select all if not disabled

查看:65
本文介绍了Jquery选择所有如果没有禁用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用以下脚本来选择具有给定类的所有复选框。

I am using the following script to select all checkboxes with a given class.

$(document).ready(function(){ // 1
    // 2
    $(':checkbox.selectall').on('click', function(){
        // 3
        $(':checkbox[class='+ $(this).data('checkbox-name') + ']').prop("checked", $(this).prop("checked"));
        $(':checkbox[class='+ $(this).data('checkbox-name') + ']').trigger("change");
    });

});

但我遇到一个问题,因为de / select all复选框可以取消/选择复选框

However I'm having a problem as the de/select all checkbox is able to de/select checkboxes which are disabled.

我尝试过

$(document).ready(function(){ // 1
    // 2
    $(':checkbox.selectall').on('click', function(){
        // 3
        $(':checkbox[class='+ $(this).data('checkbox-name') + !$(:disabled) + ']').prop("checked", $(this).prop("checked"));
        $(':checkbox[class='+ $(this).data('checkbox-name') + !$(:disabled) + ']').trigger("change");
    });

});

但它不工作。我已经做了一个jsfiddle来展示这个问题 http://jsfiddle.net/e67Fv/

But it does not work. I have made a jsfiddle to showcase the problem http://jsfiddle.net/e67Fv/

推荐答案

Hm ... interresting attempt,但是你不能在选择器中使用jQuery对象,因为选择器只是一个纯字符串。

Hm... interresting attempt, but you can't use a jQuery object inside a selector, as the selector is just a plain string.

用于排除禁用元素的选择器为:not(:disabled),因此您的代码应为:

The selector for excluding the disabled elements would be :not(:disabled), so your code should be:

$(document).ready(function(){
  $(':checkbox.selectall').on('click', function(){
    $(':checkbox[class='+ $(this).data('checkbox-name') + ']:not(:disabled)').prop("checked", $(this).prop("checked"));
    $(':checkbox[class='+ $(this).data('checkbox-name') + ']:not(:disabled)').trigger("change");
  });
});

请注意,您可以链接电话,因此您不必选择项目两次: p>

Note that you can chain calls, so you don't have to select the items twice:

$(document).ready(function(){
  $(':checkbox.selectall').on('click', function(){
    $(':checkbox[class='+ $(this).data('checkbox-name') + ']:not(:disabled)').prop("checked", $(this).prop("checked")).trigger("change");
  });
});

这篇关于Jquery选择所有如果没有禁用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆