如何实现关闭 IE浏览器给出提示
当 关闭 IE浏览器 右上方的 关闭叉按纽的 时候, 需要弹出一个提示框, 如果用户选择
否, 就不关闭; 如何实现? 我实验的代码如下: 还是不起作用.请教各位,给点建议,谢谢!
<form name="testForm" method="post" >
<body onUnload="closeMainPage()" >
here
</body>
</form>
</html>
<script language="javascript">
function closeMainPage(){
//cancel
if (confirm("您是否确认退出,最好在下载完铃声后退出,退出后该密码就无效 了!") ==false) {
alert("come to here debug");
return;
}else{
alert("debug here 2");
self.close();
}
}
</script>