使用 cookie,我试图只显示一条警告消息和一条闪烁的状态消息,表明 cookie 将像倒计时一样过期,给他们 60 秒的点击时间,延长它,如果他们不点击链接,它将导航到过期的href链接。并将使 cookie 过期。
<script>
//the function IdleToLong will be called after 30seconds.
//This means if the page reloads, it starts over.
setTimeout(IdleToLong, 30 * 1000); // 30 seconds
function IdleToLong() {
alert('Move your ass');
//If you also need to logout in PHP then you must notify the server that a user has been idle to long.
$.get('logout.php?reason=idle').complete(function() {
window.location.href = '/';
});
}
</script>
上面的代码有效,但它不会显示类似从 60 倒计时到 0 的消息,在该警报中,如果他们单击、扩展、扩展 cookie,否则注销,但该警报应该只在每 3 小时后出现,因为我我将其设置为 3 小时并将其延长 3 小时
哈士奇WWW
天涯尽头无女友
相关分类