<input type="checkbox" οnclick="checkAll('ids', this.checked)"/>
<input type="checkbox" value="${entry.id}" name="ids"/>
<input type="checkbox" value="${entry.id}" name="ids"/>。。。
方式一:
Common = { version : '1.0'};Common.checkAll = function(name, checked) { $("input[type=checkbox][name=" + name + "]").each(function() { $(this).attr("checked", checked); });}
方式二:
function checkAll(){ if($("#ids").attr("checked")){ $("input[name='ids']").each(function(i){ $(this).attr("checked","checked"); }); }else{ $("input[name='ids']").each(function(i){ $(this).attr("checked",""); }); }}