在从php成功响应后,如何将用户重定向到ajax中的另一个页面

时间:2016-12-31 10:10:08

标签: javascript php jquery ajax

我有一个javascript函数,工作正常。它将所有错误消息从php文件返回到ID resto的范围非常好。我需要,如果php文件返回一个特定的massege(你已经成功地重新设置!检查你的电子邮件以激活你的帐户)用户应该被重定向到另一个页面。请任何人帮忙

public static void main(String ...pro) {
    int o;
    try {
        o = 999;
    } catch(Exception mu) {
        System.out.println("sololobo");
        return; // end the call to `main()` here
    }

    // now the following line can only be reached if the try
    // completes without error, which means that o will be defined
    System.out.println(o);
}

1 个答案:

答案 0 :(得分:0)

// after ajax success
// Redirect user to url
window.open("https://google.com","_self");