Toggle Checkboxes on/off

Posted 嗡嘛呢巴美吽舍

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Toggle Checkboxes on/off相关的知识,希望对你有一定的参考价值。

You can write:

$(document).ready(function() {
    $("#select-all-teammembers").click(function() {
        var checkBoxes = $("input[name=recipients\\[\\]]");
        checkBoxes.prop("checked", !checkBoxes.prop("checked"));
    });                 
});

Before jQuery 1.6, when we only had attr() and not prop(), we used to write:

checkBoxes.attr("checked", !checkBoxes.attr("checked"));

But prop() has better semantics than attr() when applied to "boolean" html attributes, so it is usually preferred in this situation.

 

 

ref: https://stackoverflow.com/questions/4177159/toggle-checkboxes-on-off

以上是关于Toggle Checkboxes on/off的主要内容,如果未能解决你的问题,请参考以下文章

如何将文字字符串值传递给 django url 模板标签

React

如何使用 String.Format 将布尔类型转换为“ON”“OFF”

dos命令:系统命令

SET ARITHABORT {ON | OFF}讲解

SET NOCOUNT ON/OFF