Jquery 复选框全选、反选

$("#checkall").click( 
function(){ 
if(this.checked){ 
$("input[name='total']").each(function(){this.checked=true;}); 
}else{ 
$("input[name='total']").each(function(){this.checked=false;}); 


);



固定高度

window.parent.adjustFrameSize();


猜你喜欢

转载自blog.csdn.net/guo_xiao_hui/article/details/20373643