[code=JScript]
$(function(){
$("#checkedAll").click(function(){
$("[name=check]:checkbox").attr('checked',true);
});
$("#checkedNo").click(function(){
$("[name=check]:checkbox").attr('checked',false);
});
$("#checkedRev").click(function(){
$("[name=check]:checkbox").each(function(){
this.checked=!this.checked;
});
});
var idStr="";
$("input[name='check']:checked").each(function(){
idStr +=$(this).attr('value')+",";
});
if( idStr !="" ){
if(confirm("确定删除?")){
window.location.href="adm_batch_del.php?adm_id="+idStr; //转到后台处理
}
}else {
alert("请选中一项");
return;
}
});
});
[/code]
[code=HTML]
<input type="checkbox" id="check" name="check" value="<?php echo $row['adm_id'] ?>"/>
<input type="button" id="batch_del" value="批量删除" />
<input type="button" id="checkedAll" value="全选" />
<input type="button" id="checkedNo" value="全不选" />
<input type="button" id="checkedRev" value="反转" />