欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

jquery 实现的复选框全选与反选

程序员文章站 2022-04-10 20:27:04
...
此代码简单但适用。
var tog = false;
// or true if they are checked on load 
$('a').click(function() { 
  $("input[type=checkbox]").attr("checked",!tog); 
  tog = !tog; 
});

需要的码农可以拿去实验一下,效果不错。