如果if语句满足,如何在延迟后重定向

时间:2013-05-31 17:23:22

标签: javascript

我已经根据我的一个朋友的要求创建了一个随机网站的东西,询问问题是什么(答案(互联网笑话)是“他有赃物吗?”此刻我已经得到了它检查给定的密码并写入文件,具体取决于它是对还是错。但我想要,如果满足了战利品的条件,重定向(延迟5秒后)到Tumblr,这是一个非常棒的网站。

到目前为止这是我的代码:)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
   <head>
      <title>The ultimate question</title>
      <style>
     body{
     background-color:rgb(238, 235, 229);
     }
     #scriptresult{
     font-family:calibri;
     font-size:26px;
     width:30%;
     margin-left:35%;
     text-align:center;
     margin-top:15%;
     border-color:rgb(91, 122, 221);
     border-style:solid;
     border-width:5px;
     padding:20px;
     background-color:rgb(240, 219, 200);    
     }

  </style>
  </head>
  <body>
  <div id="scriptresult">


<script language="Javascript">
var passcode;
passcode = prompt("What is the ultimate question? (Make sure to include the ? at the end)");
passcode = (passcode.toUpperCase());
document.write("Your guess was" + " " + passcode);
if (passcode == "DO HE GOT A BOOTY?" || passcode == "DO HE GOT THE BOOTY?" || passcode == "DO HE GOT DA BOOTY?") {
    document.write("<br>Congratulations! You got da answer! Visit the awesomness!");
    else if (passcode == "DOCTOR WHO?" || passcode == "WHAT IS THE MEANING OF LIFE?" || passcode == "WHAT IS THE DOCTORS NAME?" || passcode == "WHAT IS THE DOCTOR'S NAME?") {
        document.write("<br>Not quite... But I love the guess! Think along the line of booty...<br><h6>(Hit refresh to try again)</h6>");
    } else {
        document.write("<br>Nope. That's wrong.<br><h6>(Hit refresh to try again)</h6>");
    }
</script>
</div>
</body>
</html>

提前非常感谢你!

3 个答案:

答案 0 :(得分:1)

将此代码插入您的成功条件。

setTimeout(function(){window.location.href="tumblr.com"},5000);

答案 1 :(得分:0)

这将让你在五秒钟后执行一个功能。

setTimeout(function() {
  // Do redirect here...
}, 5000);

答案 2 :(得分:0)

在你的传递if语句中:

window.setTimeout(function() {
    location.href = "www.tumblr.com"; //is this the right link?
}, 5000);