Onbeforeunload也适用于刷新

onbeforeunload works also with refreshing

本文关键字:刷新 适用于 Onbeforeunload      更新时间:2023-09-26

几天前我做了这个问题(页面刷新后Java会话删除),我没有答案。也许是因为问题出在onbeforeunload事件上。:

 <body onbeforeunload="chiudi()">

我想要步枪会议。问题是这样的会话将是
如果用户刷新页面,也可以浏览。我该怎么修理它?

这是我的javascript函数chiudi()

 function chiudi(){
 var xmlHttp = new XMLHttpRequest();
    xmlHttp.open("POST", "SvuotaSession", false);
    xmlHttp.setRequestHeader("Content-type",
            "application/x-www-form-urlencoded");
    xmlHttp.send(null);
 }

我认为你做不到。您不允许获得有关用户要去哪里的信息(根据这个),所以没有办法知道用户正在刷新当前页面。