1

我试过这些:

    <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>    

但这对我没有用。请访问这些页面:

在固定的时间间隔后重新加载 div 的内容

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

4

2 回答 2

1

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。

于 2017-09-18T11:26:20.450 回答
0

我自己找到了答案。我的代码中有一个小问题。我希望我的页面在我的页面中包含 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

于 2017-09-18T11:26:39.917 回答