我的代码在这里检查我的图像表上是否有新帖子。
当我有一个新帖子并且我的时间戳发生变化时,我希望一个 div 向下滑动,说有新的更新,如下图所示:
setInterval('checkForUpdates', 30000);
var lastTime = (new Date()).getTime();
function checkForUpdates() {
$.get('image.php?timestamp=' . lastTime
, function (results) {
if (results) { /* fade into dom */ }
}
);
lastTime = (new Date()).getTime();
}