<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>html+css+js实现复选框全选与反选</title> <meta http-equiv="content-type" conten…
这是界面代码: function shua(){ var id_array=new Array(); $('input[id="checkAll"]:checked').each(function(){ id_array.push($(this).val());//向数组中添加元素 }); //获取界面复选框的所有值 var chapterstr = id_array.join(',…