使用以下php代码更新HTML标记的最简单方法是什么?
<h1>
<?php
include "document.txt";
?>
</h1>
我的意思是定时更新......每10秒或每2秒。
答案 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);