发布网友 发布时间:2022-04-24 01:39
共2个回答
热心网友 时间:2022-04-22 19:51
···你要alert?
window.onbeforeunload = function(){追问你在你的浏览器上面测试了吗?这个我试过了,没用。
追答好像没效果·····
热心网友 时间:2022-04-22 21:09
function CloseOpen(event) {
if(event.clientX<=0 && event.clientY<0) {
alert("关闭");
}
else
{
alert("刷新或离开");
}
}
Java代码
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 = ""; //这里可以放置你想做的操作代码
}
}追问你好,请问你在你那里试了吗。我这里不行啊。