Beforeunload无法将用户重定向到另一个页面,如何在尝试关闭窗口/选项卡时将用户重定向到另一个页面/ URL? [英] Beforeunload is not working to redirect user to another page, how can I redirect user to another page/url when he attempts to close a window/tab?

查看:82
本文介绍了Beforeunload无法将用户重定向到另一个页面,如何在尝试关闭窗口/选项卡时将用户重定向到另一个页面/ URL?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的以下代码无法将用户重定向到另一个页面:

My following code isn't working to redirect the user to another page:

$(window).on('beforeunload',function(){
                        window.location.href="http://www.google.com;
                    }) ;

我希望用户在尝试关闭标签时重定向到另一个页面。
实现此目的的替代方法是什么?

I want the user to be redirected to another page when he attempts to close the tab. What's the alternative and appropriate way to achieve this?

推荐答案

* 不要这样做 *



但是有可能获得用户的许可;你可以做到这样的事情(花了一些时间找到一个框架中很开心的网站)

*Don't do it*

But it is possible with the user's permission; you can achieve something like this (took me a while to find a website that was happy in a frame)

window.onbeforeunload = function () {
    window.setTimeout(function () { // escape function context
        window.location = 'http://bbc.co.uk';
    }, 0);
    window.onbeforeunload = null;   // necessary to prevent infinite loop
                                    // that kills your browser
    return 'Press "Stay On Page" to go to BBC website!';
        // pressing leave will still leave, but the GET may be fired first anyway
}

演示

这篇关于Beforeunload无法将用户重定向到另一个页面,如何在尝试关闭窗口/选项卡时将用户重定向到另一个页面/ URL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆