站点关闭时Popunder

时间:2016-04-16 17:29:16

标签: javascript

当有人关闭网站时,有没有办法获取popunder代码? 我在Google上搜索过,但无法找到方法或答案。

基本上: 用户不再希望留在特定的网站上,他是关闭按钮(" x"按钮),然后会出现一个弹出窗口。

1 个答案:

答案 0 :(得分:-1)

            window.onbeforeunload = function(event) {
            var message = 'Important: Please click on \'Save\' button to leave this page.';
            if ( typeof event == 'undefined') {
                event = window.event;
            }
            if (event) {
                event.returnValue = message;
            }
            return message;
        };

        $(function() {
            $("a").not('#lnkLogOut').click(function() {
                window.onbeforeunload = null;
            });
            $(".btn").click(function() {
                window.onbeforeunload = null;
            });
        });