我在做一个考试系统,如果考生非正常退出,需要我的程序帮他交卷,怎么实现??
在线等!
3 个解决方案
#1
<body onunload="javascript:alert('asdfds')">
#2
这个刷新的时候也有的,你去找找看,这里很多的,
#3
点击X来关闭当前网页
<script language=javascript>
function window.onbeforeunload()
{
if (event.clientX>document.body.clientWidth && event.clientY<0||event.altKey){
window.event.returnValue="确定要退出本页吗?";}
}
</script>
<script language=javascript>
function window.onbeforeunload()
{
if (event.clientX>document.body.clientWidth && event.clientY<0||event.altKey){
window.event.returnValue="确定要退出本页吗?";}
}
</script>
#1
<body onunload="javascript:alert('asdfds')">
#2
这个刷新的时候也有的,你去找找看,这里很多的,
#3
点击X来关闭当前网页
<script language=javascript>
function window.onbeforeunload()
{
if (event.clientX>document.body.clientWidth && event.clientY<0||event.altKey){
window.event.returnValue="确定要退出本页吗?";}
}
</script>
<script language=javascript>
function window.onbeforeunload()
{
if (event.clientX>document.body.clientWidth && event.clientY<0||event.altKey){
window.event.returnValue="确定要退出本页吗?";}
}
</script>