jQuery实现复选框的全选和反选
程序员文章站
2023-02-23 12:17:17
话不多说,请看代码
话不多说,请看代码
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>document</title> </head> <body> <form> <label for="apple">苹果</label> <input type="checkbox" name="apple"> <label for="banana">香蕉</label> <input type="checkbox" name="banana"> <label for="orange">橘子</label> <input type="checkbox" name="orange"> <input type="button" value="全选" onclick="allpick()"> <input type="button" value="全不选" onclick="unallpick()"> <input type="button" value="反转" onclick="inverserpick()"> </form> <script src="http://cdn.bootcss.com/jquery/3.1.1/jquery.min.js"></script> <script> // 全选 function allpick() { $("[type=checkbox]:checkbox").each(function () { this.checked = true; }) } // 全不选 function unallpick() { $("[type=checkbox]:checkbox").each(function () { this.checked = false; }) } // 反转 function inverserpick() { $("[type=checkbox]:checkbox").each(function () { this.checked = !this.checked; }) } </script> </body> </html>
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
上一篇: assert()函数用法总结(推荐)