比如:我想提醒用户到了最后一页,并取消用户翻页的操作,可以用window.event.returnValue来取消这步操作
**
function alertt() {
if (${index}==${count}){
alert("当前已经是最后一页了!");
window.event.returnValue=false;
}
}
function del() {
if(!confirm("是否确认删除该学生信息")){
window.event.returnValue=false;
}
}