关闭当前页面时提示用户(js)
当关闭浏览器的时候,出现确定对话框,确定则关闭,取消则不关闭,请问有什么好的解决办法?
引用
<script language="Javascript">
<!--
function popup()
{
var real;
real=magbox("你真的要走吗?",36,title);
if real=6
window.open(x.html,title);
else exit;
}
-->
</script>
<body onunload="pop()">
2.<script language="javascript">
<!--
function pop()
{window.open(aaa.html,"newwin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=350,height=500");}
--></script>
pop()产生的就是这种效果。
aaa.html:
<html><head><title></title></head><body>
<a href=# onclick=window.close()><img src="http://xxxx/xxx/close.gif" align=right></a>djkfghdjlfkhgdjlfkhgdjfkgdfbgjksdjhdfkgdf</body></html>