<script type = "text/javascript">
$(document).ready(function() {
$("#selectAll").click( function() {
$(":checkbox").each( function() { $(this).attr("checked","true"); })
});
$("#selectOther").click( function() {
$(":checkbox").each( function() { $(this).attr("checked",!this.checked); })
});
});
</script>
<body>
<input type="checkbox" name="cb" value ="box1">box1
<input type="checkbox" name="cb" value ="box2">box2
<input type="checkbox" name="cb" value ="box3">box3
<input type="button" value="全选" id="selectAll">
<input type="button" value="反选" id="selectOther">
</body>
$(document).ready(function() {
$("#selectAll").click( function() {
$(":checkbox").each( function() { $(this).attr("checked","true"); })
});
$("#selectOther").click( function() {
$(":checkbox").each( function() { $(this).attr("checked",!this.checked); })
});
});
</script>
<body>
<input type="checkbox" name="cb" value ="box1">box1
<input type="checkbox" name="cb" value ="box2">box2
<input type="checkbox" name="cb" value ="box3">box3
<input type="button" value="全选" id="selectAll">
<input type="button" value="反选" id="selectOther">
</body>