我有 index.php 和 images.php。我想要的是 index.php 上的某个 div 自动从 images.php 获取它的内容,并在 images.php 上出现新内容时刷新。我目前有这个:
$(document).ready(function() {
$.ajaxSetup({ cache: false });
setInterval(function() {
$('#images').load('images.php');
}, 500);
});
这工作正常,但它每 .5 秒刷新一次 div,这是我不想要的,我希望它检测何时将新内容插入到 images.php 中,然后将其加载。
但问题是,在 images.php 上我有一些时间戳(1 分钟前等)。jQuery 会将这些检测为更改,然后刷新。
有没有办法统计<img>
images.php页面上的图片标签(索引.php。