使用PHP代码更新HTML标记

时间:2012-06-28 23:52:24

标签: php html

使用以下php代码更新HTML标记的最简单方法是什么?

<h1>
 <?php
    include "document.txt";
    ?>
    </h1>

我的意思是定时更新......每10秒或每2秒。

1 个答案:

答案 0 :(得分:1)

看看AJAX。 jQuery有一个非常容易使用的函数来发出AJAX请求,请参阅jQuery.ajax()

这个例子(从jQuery页面修改)是你想要的:

function loadData() {
    $.ajax({
      url: "document.txt",
      cache: false
    }).done(function( html ) {
      $("#results").html(html);
    });
}

它将获取document.txt文件的内容,并将其添加到属性为id="results"的元素中,如下所示:

<h1 id="results"></h1>

然后,您可以使用window.setInterval以设定的间隔执行代码。

window.setInterval(loadData, 10000);