jquery 如何实现全选 不选 反选
<script src="jquery-1.4.4.min.js" type="text/javascript"></script>
<script type="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代码了