checkbox实现反选

Posted

tags:

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

<input type="checkbox" name="items" value="足球"/>足球

<input type="checkbox" name="items" value="篮球"/>篮球

<input type="checkbox" name="items" value="乒乓球"/>乒乓球

<input type="checkbox" name="items" value="棒球"/>棒球

<input type="button" id="send" value="提交"/>提交


$("#send").click(function(){

    $("[name=items]:checkbox").each(function(){

        $(this).attr("checked",!$(this).attr(‘checked‘))

        //或者this.checked=!this.checked;

    })

})





以上是关于checkbox实现反选的主要内容,如果未能解决你的问题,请参考以下文章

jQuery实现checkbox反选(转载)

JQuery实现的 checkbox 全选反选。

js 脚本怎样实现checkbox的全选,反选,类似邮箱中邮件的全选后删除移动

如何用jQuery实现checkbox全选

请问checkbox如何产生级联的(全选,反选,不选)代码是啥样子的?

jQuery实现checkbox的全选和反选