61,821
社区成员




<script language="javascript">
window.onbeforeunload = function() //author: meizz
{
var n = window.event.screenX - window.screenLeft;
var b = n > document.documentElement.scrollWidth-20;
if(b && window.event.clientY < 0 || window.event.altKey)
{
alert("是关闭");
// window.event.returnValue = "www"; //这里可以放置你想做的操作代码
}
else
{
alert("是刷新");
}
}
</script>