gpt4 book ai didi

javascript - onbeforeunload 可以这样写吗?

转载 作者:行者123 更新时间:2023-11-30 06:27:49 26 4
gpt4 key购买 nike

onbeforeunload函数可以这样写吗?

   window.onbeforeunload = function(evt) { 

if(return true)
{
if(confirm('Are you sure you want to logout'));
{
//logout function
}
}
}

如果用户单击“离开此页面”按钮,我想要求用户注销 session 。可能吗?

最佳答案

这是您需要的吗?

   <script type="text/javascript">
window.onbeforeunload = function() {
if(confirm('Are you sure you want to logout'))
{
alert("logout")
}
}
</script>

关于javascript - onbeforeunload 可以这样写吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19972300/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com