在特定时间间隔内刷新 PHP 个所需文件

Refresh a PHP required file within a specific intervals

我试过这些:

    <div id="result">
<table>
<?php require('newses.php'); ?>
</table>
</div>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
   <script>
 function autoRefresh_div()
 {
      $("#result").load("load.html");// a function which will load data from other file after x seconds
  }

  setInterval('autoRefresh_div()', 1000); // refresh div after 5 secs
            </script>    

但它对我不起作用。 请访问这些页面:

Reload the content of a div afer regular interval of time

http://devzone.co.in/automatically-refresh-html-page-div-specific-time-interval/

function autoRefresh_div() {
  $("#result").html('<object data="https://static.pexels.com/photos/17679/pexels-photo.jpg"/>'); // a function which will load data from other file after x seconds
  alert('working');
}

setInterval(autoRefresh_div, 5000); // refresh div after 5 sec
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="result"></div>

这将每 5 次加载一次页面。

我自己找到了答案。 我的代码中有一个小问题。 我希望我的页面在我的页面中包含 newses.php 文件,并在每 1 秒后刷新同一个文件 (newses.php)。 JavaScript 代码有一个小问题。刷新页面的代码名称是 load.html,因此浏览器会在第一个网页加载 1 秒后尝试加载 load.html 页面。 当我将刷新代码从 $("#result").load("load.html");// a function which will load data from other file after x seconds 更改为 $("#result").load("newses.php");// a function which will load data from other file after x seconds 时,我的页面变得完全正常工作。 这是编辑后的代码。

function autoRefresh_div() { $("#result").load("newses.php");// 将在 x 秒后从其他文件加载数据的函数 } setInterval('autoRefresh_div()', 1000); // 5 秒后刷新 div