<script> function Del(id) { if (confirm("您确定要删除吗")){ location.href="${pageContext.request.contextPath}/DelServlet?id="+id;
}
}
window.onload=function () { document.getElementById("fir").onclick=function () { var cbs = document.getElementsByName("cb"); for (var i=0;i<cbs.length;i++){
cbs[i].checked=this.checked;
}
} document.getElementById("delAll").onclick=function () { var cbs = document.getElementsByName("cb"); var b=false; for (var i=0;i<cbs.length;i++){ if (cbs[i].checked){
b=true; break;
}
}
if (b==true){ if (confirm("您确定要删除选中的数据吗?")){ document.getElementById("form").submit();
}
} else { alert("请选中需要删除的数据")
}
}
}
</script>
</head>
<body>