我需要在时间变为00.00时重定向页面

时间:2016-08-25 13:53:57

标签: javascript php html redirect

我需要祝朋友过生日,所以我打算告诉我的朋友打开一个网页@ 11.55,当时间变成12.00我需要自动将我朋友的页面重定向到我的问候页并帮助我做任务

1 个答案:

答案 0 :(得分:1)

使用javascript进入朋友的页面

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
    <script type="text/javascript">
    function greetings(){
      var now =new Date();
      if (now.getHours()===0 && now.getMinutes()===0) window.location.href='http://google.com';
    }
    setInterval(greetings,10000);
    </script>
  </head>
  <body>
  </body>
</html>