39

我正在使用以下代码刷新页面,它不会在完成时重新加载。以下代码有时不起作用。

 $page = $_SERVER['PHP_SELF'];
 $sec = "10";
 header("Refresh: $sec; url=$page");
 echo "Watch the page reload itself in 10 second!";
4

8 回答 8

66

使用<meta>重定向而不是标头重定向,如下所示:

<?php
$page = $_SERVER['PHP_SELF'];
$sec = "10";
?>
<html>
    <head>
    <meta http-equiv="refresh" content="<?php echo $sec?>;URL='<?php echo $page?>'">
    </head>
    <body>
    <?php
        echo "Watch the page reload itself in 10 second!";
    ?>
    </body>
</html>
于 2012-07-16T02:56:26.163 回答
32

您可以使用

<meta http-equiv="refresh" content="10" > 

只需在头部标签之间添加它

其中 10 是您的页面将自行刷新的时间

于 2013-10-06T06:23:02.613 回答
11

使用此代码,它会在 5 秒后自动刷新,您可以在刷新时更改时间

<?php $url1=$_SERVER['REQUEST_URI']; header("Refresh: 5; URL=$url1"); ?>

于 2014-11-22T19:50:43.883 回答
5

试试这个。您的页面将每 10 秒刷新一次

<html>
 <head>

  <meta http-equiv="refresh" content="10; url="<?php echo $_SERVER['PHP_SELF']; ?>">
 </head>
 <body>

 </body>
</html>
于 2016-09-12T15:43:39.753 回答
1

也许使用这个代码,

<meta http-equiv="refresh" content = "30" />

放轻松

于 2017-01-09T07:02:21.953 回答
0

像这样简单的步骤,

<!DOCTYPE html>
<html>
<head>
    <title>Autorefresh Browser using jquery</title>
    <script type="text/javascript" src="jquery.min.js"></script>
    <script type="text/javascript">
        $(function() {
            startRefresh();
        });
        function startRefresh() {
            setTimeout(startRefresh,100);
            $.get('text.html', function(data) {
                $('#viewHere').html(data);
            });
        }
    </script>

</head>
<body>
    <div id="viewHere"></div>
</body>
</html>

此视频完整教程 https://youtu.be/Q907KyXcFHc

于 2019-05-17T18:11:25.040 回答
0

这适用于 Firefox Quantum 60+ 和 Chrome v72 (2019)

//set a header to instruct the browser to call the page every 30 sec
header("Refresh: 30;");

为了(重新)调用同一页面,似乎不需要传递页面 url 以及刷新期。我没有在 Safari/Opera 或 IE/Edge 上尝试过这个。

于 2019-08-29T09:37:55.053 回答
-2

<meta http-equiv="refresh" content="10" >

这可以工作。尝试一下..!!:-)

于 2018-10-05T06:36:35.297 回答