可能重复:
How can I override the OnBeforeUnload dialog and replace it with my own?
destroy session on window close?
How to execute ajax function onbeforeunload?
我想在用户关闭窗口后删除会话。我不知道该怎么做。请帮我 。我尝试使用它的工作良好的IE浏览器代码,但不能在其他浏览器中工作。有没有其他方法来解决这个问题
$(window).unload( function (event)
{
if (window.event.clientX < 0 && window.event.clientY < 0)
{
alert("closeddddddddddd");
$.ajax({ url: "logout.php"});
}
} );