$(document).ready(function(){
	$(":checkbox:eq(0)").change(function(){
		 if ($(this).is(":checked")) {
             $(":checkbox:gt(0)").attr("checked", true);
         } else {
             $(":checkbox:gt(0)").attr("checked", false);
         }
	});
	$(":checkbox:gt(0)").click(function(){
		if ($(this).is(":checked")&&$(":checkbox:gt(0):checked").length ==$(":checkbox:gt(0)").size()) {
            $(":checkbox:eq(0)").attr("checked", true);
        }else if (!$(this).is(":checked")&&$(":checkbox:gt(0):checked").length ==0) {
            $(":checkbox:eq(0)").attr("checked", false);
        }else{
        	 $(":checkbox:eq(0)").attr("checked", false);
        }
	});
});

 

相关文章:

  • 2021-10-25
  • 2022-02-23
  • 2022-02-27
  • 2021-05-19
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-20
  • 2022-12-23
  • 2022-01-06
  • 2021-11-30
相关资源
相似解决方案