如果执行了if语句,如何在延迟之后重定向

How to redirect after a delay if an if statement if fulfilled

本文关键字:延迟 之后 重定向 执行 if 语句 如果      更新时间:2023-09-26

我在我的一个朋友的请求下创建了一个随机的网站,问问题是什么(答案(一个网络笑话)是"他得到战利品了吗?"目前我有它来检查给出的密码,并根据它是否正确或错误写入文件。但我希望它,如果战利品的条件得到满足,重定向(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>

提前谢谢你!

将此代码插入到成功条件中。

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

这将允许您在5秒后执行一个函数。

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

在你传递的if语句中:

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