繁体   English   中英

如何检查和取消选中div中的所有复选框

[英]How to check and uncheck all checkboxes inside a div

我想取消选中'test'div中的所有checkboxex,而不选择那些属性被禁用的复选框。

<div id="test">
   <input type="checkbox" id="check1" name="check1">
   <input type="checkbox" id="check01" name="check01" disabled="disabled">
   <input type="checkbox" id="check2" name="check2" disabled="disabled">
   <input type="checkbox" id="check3" name="check3">
   <input type="checkbox" id="check4" name="check4">
   <input type="checkbox" id="check50" name="check50">
   <input type="checkbox" id="check6" name="check6">   
</div>
<input type="button" id="uncheckAll" onclick="uncheckAll('test')">
<script language="javascript">
 function uncheckAll() {
     $('#' + divid + ' :checkbox').attr('checked', false);
     /*
   This function uncheck all of the checkboxes, which i don't want, i want to
   uncheck only checkboxes whose attributes are not disabled.
  /*
}*/
</script>

您需要接受名为divId的参数,然后使用:enabled filter来过滤掉禁用的复选框

function uncheckAll(divid) {
    $('#' + divid + ' :checkbox:enabled').prop('checked', false);
}

演示: 小提琴


如果没有jQuery

function uncheckAll(divid) {
    var checks = document.querySelectorAll('#' + divid + ' input[type="checkbox"]');
    for(var i =0; i< checks.length;i++){
        var check = checks[i];
        if(!check.disabled){
            check.checked = false;
        }
    }
}

演示: 小提琴

您可以为每个输入采用公共类。 尝试这个

<div id="test">
            <input type="checkbox" id="check1" class="check" name="check1">
            <input type="checkbox" id="check01" class="check" name="check01" disabled="disabled">
            <input type="checkbox" id="check2" class="check" name="check2" disabled="disabled">
            <input type="checkbox" id="check3" class="check" name="check3">
            <input type="checkbox" id="check4" class="check" name="check4">
            <input type="checkbox" id="check50" class="check" name="check50">
            <input type="checkbox" id="check6" class="check" name="check6">   
        </div>
    <input type="button" id="uncheckAll" onclick="uncheckAll()">
<script language="javascript">
  function uncheckAll()
{
  $("input.check").each(function(){
    if($(this).prop('disabled')!=true)
    {
      $(this).attr('checked',false);
    }
  });

}
</script>

以下单行jQuery代码将完成您的工作。

    function uncheckAll(divid) {
        $('#' + divid + ' :checkbox:not([disabled])').attr('checked', false);
    }

最简单的解决方案:

// index.html在<body>创建:

<button type="button" id="desativar-tudo">Uncheck All</button>
<button type="button" id="ativar-tudo">Check All</button>

//之后创建:

<script type="text/javascript" src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script type="text/javascript">         

function uncheckAll() {$('input').prop('checked', false);}
function CheckAll(){$('input').prop('checked', true);}

$('#desativar-tudo').click(uncheckAll);
$('#ativar-tudo').click(CheckAll);

</script>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM