123456789101112131415161718192021222324252627282930id="h2-caption"jQuery复选框 全选 反选 取消 选中输出等功能class="mar20"name="newslist-1" id="newslist-1" type="checkbox" value="1" for="newslist-1"超实用的jQuery代码段1class="mar20"name="newslist-2" id="newslist-2" type="checkbox" value="2" for="newslist-2"超实用的jQuery代码段2class="mar20"name="newslist-3" id="newslist-3" type="checkbox" value="3" for="newslist-3"超实用的jQuery代码段3class="mar20"name="newslist-4" id="newslist-4" type="checkbox" value="4" for="newslist-4"超实用的jQuery代码段4class="mar20"name="newslist-5" id="newslist-5" type="checkbox" value="5" for="newslist-5"超实用的jQuery代码段5class="mar20"name="newslist-6" id="newslist-6" type="checkbox" value="6" for="newslist-6"超实用的jQuery代码段6class="mar20"name="allselect" id="allselect" type="button" value="全选"name="invert" id="invert" type="button" value="反选"name="cancel" id="cancel" type="button" value="取消"name="output" id="output" type="button" value="输出"id="div-log"
12345678910* {margin:0;padding:0;list-style-type:none;}.mar20 {margin:20px;font:13.5px "Trebuchet MS",sans-serif;}
12345678910111213141516171819202122232425262728293031323334353637383940414243$(document).ready(function() {// 全选$("#allselect").click(function() {$(":checkbox").each(function() {$(this).prop("checked", true);$(this).next().css({"background-color": "blue","color": "White"});});});//反选$("#invert").click(function() {$(":checkbox").each(function() {if ($(this).prop("checked")) {$(this).prop("checked", false);$(this).next().css({"background-color": "White","color": "black"});} else {$(this).prop("checked", true);$(this).next().css({"background-color": "blue","color": "White"});}});});//取消$("#cancel").click(function() {$(":checkbox").each(function() {$(this).prop("checked", false);$(this).next().css({"background-color": "White","color": "black"});});});