douzai6337 2014-05-28 07:02
浏览 108
已采纳

在特定时刻重定向页面[关闭]

How do I redirect to a page at a specific time?

Say wish to redirect on 31st dec 12:00AM, and people visiting after 12:00 must get directly redirected to new site.

Is this possible in jquery or PHP?

  • 写回答

2条回答 默认 最新

  • dssj88098 2014-05-28 07:47
    关注

    The PHP code will check before the page is loaded, so new visitors will be redirected, and the javascript code will check every 10 seconds after the page is loaded, so existing visitors will be redirected.

    <?php
        $date = new DateTime("December 31st, 2014 12:00AM");
        $now = time();
    
        if($now > $date->getTimestamp()) // if it's past the date
        {
            header("Location: http://google.com/");
        }
    ?>
    
    <html>
        <head>
            <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
            <script type="text/javascript">
                function checkDate()
                {
                    // Year: 2014
                    // Month: 11 is December (0-11)
                    // Day: 31st
                    var date = new Date(2014, 11, 31, 0, 0, 0, 0);
                    var now = new Date();
    
                    if(now > date) // if it's past the date
                    {
                        window.location.replace("http://google.com/");
                    }
                }          
    
                $(function() {
                    window.setInterval(checkDate, 10 * 1000); // check every ten seconds
                });
            </script>
        </head>
        <body>
        </body>
    </html>
    

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥40 selenium访问信用中国
  • ¥15 电视大赛投票系统的c语言代码怎么做
  • ¥20 在搭建fabric网络过程中遇到“无法使用新的生命周期”的报错
  • ¥15 Python中关于代码运行报错的问题
  • ¥500 python 的API,有酬谢
  • ¥15 软件冲突问题,软件残留问题
  • ¥30 有没有人会写hLDA,有偿求写,我有一个文档,想通过hLDA得出这个文档的层次主题,有偿有偿!
  • ¥50 有没有人会写hLDA,有偿求写,我有一个文档,想通过hLDA得出这个文档的层次主题,有偿有偿!
  • ¥15 alpha101因子里哪些适合crypto?
  • ¥15 ctrl win alt 键一直触发
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部