我有一个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);
}
答案 0 :(得分:0)
// after ajax success
// Redirect user to url
window.open("https://google.com","_self");