jquery 如何实现全选 不选 反选

<scriptsrc="jquery-1.4.4.min.js"type="text/javascript"></script>

<scripttype="text/javascript">

$(document).ready(function(){

$("#setall").click(function(){

$("#inputlist:input[name=check]").attr("checked",true);

});

$("#setNotall").click(function(){

$("#inputlist:input[name=check]").attr("checked",false);

});

$("#setallC").click(function(){

$("#inputlist:input[name=check]").each(function(){

$(this).attr("checked",!$(this).attr("checked"));

});

});

});

</script>

这里就是全部jquery代码了

相关推荐