我正试图用这一文字自动更新一部分内容:
function update() {
$.get("authentication/notifications.php", function() {
$(".notificationBox").html();
window.setTimeout(update, 10000);
});
}
但出于某种原因,它不工作。 页: 1
通知。 php必须从数据库中获取一些数据。 我知道,这getting了,讨论一下它所展示的网页的正常更新。
通知 通知中载有方框。 php只是一个 for(ach)的正常 d。
My notifications.php looks like this:
<?$notifications = $db->notifications();
foreach($notifications as $notifications):?>
<div class= notificationBox ><?=$notifications[ pushCommentsContent ];?></div>
<?endforeach;?>
I want the DIV to be outputted on update, or to be added to the existing.