任何人都可以告诉我这个功能的问题..这个功能不起作用

时间:2012-10-11 21:25:26

标签: javascript jquery

$(window).unload(function() {
    var c = confirm("Are You want to open Foortal.pk");
    if (c) {

        window.location.replace("http://www.google.com")

        return true;
    } else {
        return false;
    }
});​

我不知道问题

4 个答案:

答案 0 :(得分:3)

工作演示 http://jsfiddle.net/FUXRF/

阅读本次==> https://forum.jquery.com/topic/jquery-onbefore-unload-and-page-redirect

这将像火箭一样:)我希望每个人

<强>码

$(window).unload(function() {
    var c = confirm("Are You want to open Foortal.pk");
    if (c) {
        alert(window.location);
       // window.location.replace("http://www.google.com");
        window.parent.location = "http://www.google.com";
        return true;
    } else {
        return false;
    }
});

$(window).trigger('unload');
​

答案 1 :(得分:1)

window.parent.location ="http://www.google.com";

使用它代替

window.location.replace("http://www.google.com");

答案 2 :(得分:0)

我们这样做

   $(window).bind("beforeunload", function(){
        return "Are you OK?";
    });

尝试

   $(window).bind("beforeunload", function(){
        var c = confirm("Are You want to open Foortal.pk");
        if (c) {

            window.location("http://www.google.com");

            return true;
        } else {
            return false;
        }
    });

答案 3 :(得分:0)

你忘了';'在

window.location.replace("http://www.google.com");