Javascript从警告框重定向

时间:2013-07-15 13:15:27

标签: javascript redirect alert

您好我有一个使用javascript调用的警告框,我想在警报框中有人点击确定时重定向到users_signup页面我该怎么办呢?

alert("You need to sign in to be able to vote");
   redirect_to sign_up_url

1 个答案:

答案 0 :(得分:3)

if (confirm("You need to sign in to be able to vote")){
   // They have clicked OK
   window.location = 'http://website.com/sign_up_url';
}

或者,在弹出警告框后强制重定向:

alert("You need to sign in to be able to vote");
// The code execution won't proceed until they click OK
window.location = 'http://website.com/sign_up_url';