jquery checkbox全选,全取消

  • A+
所属分类:jquery
$("#chk_all").click(function(){
  if($("#chk_all").val() == "0"){
    $("#test input").attr("checked",$(this).attr("checked"));
    $("#chk_all").val(1);
  }
  else{
    $("#test input").removeAttr('checked');
    $("#chk_all").val(0);
  }
});

 

ZPY

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: