我正在尝试创建一个网站,只要您留在该网站上,您就可以通过 php 中的会话保持登录状态,但如果您离开该网站,您将被注销。例如,当您从 mysite.com/index.php 移动到 mysite.com/otherpage.php 时,您将保持登录状态,但在您移动到 othersite.com 时将被注销。这可能吗?
到目前为止,我已经尝试使用 ajax 和 jquery 在页面离开时结束会话,但这也会在页面刷新时结束会话。
$(window).unload(function(){
$.ajax({
type: 'POST',
url: 'logout.php',
async:false,
data: {key_leave:"289583002"}
});
});