在页面中加入如下的脚本function window.onbeforeunload()
{
event.returnValue = "关闭页面的提示信息";
}
通过捕捉点击浏览器的关闭按钮事件,可以在页面关闭前给出提示信息,提示关闭.
0
0
0
(请您对文章做出评价)
在页面中加入如下的脚本function window.onbeforeunload()
{
event.returnValue = "关闭页面的提示信息";
}
通过捕捉点击浏览器的关闭按钮事件,可以在页面关闭前给出提示信息,提示关闭.
转载于:https://www.cnblogs.com/lhuser/articles/1691681.html