jQuery全选/反选checkbox

Posted Vincent

tags:

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

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>checkbox全选/反选</title>
  <script src="jquery.js"> </script>
  <script type="text/javascript">
  $(document).ready(function(){
    $("#check").change(function(){
        //全选/反选所有name="goods"的checkbox
        $("input[name=‘goods‘]").prop("checked",this.checked);
        //全选/反选所有checkbox
        //$("input[type=‘checkbox‘]").prop("checked",this.checked);
    });
  });
  </script>
 </head>
 <body>
 <center>
    全选/反选<input type="checkbox" id="check"/><br/>
    <input type="checkbox" name="goods"/><br/>
    <input type="checkbox" name="goods"/><br/>
    <input type="checkbox" name="goods"/><br/>
    <input type="checkbox" name="goods"/><br/>
    <input type="checkbox" name="goods"/><br/>
    <input type="checkbox" name="goods"/><br/>
    <input type="checkbox" name="goods"/><br/>
    <input type="checkbox" name="goods"/><br/>
    <input type="checkbox" name="goods"/><br/>
    <input type="checkbox" name="goods"/><br/>
    <input type="checkbox" name="goods"/><br/>
</center>
 </body>
</html>

 

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

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

JQuery实现的 checkbox 全选反选。

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

如何用jQuery实现checkbox全选

Vue实现单选、全选和反选

jQuery实现checkbox的全选和反选