jQuery get和Load不工作,但正在运行

时间:2016-04-14 10:58:09

标签: php jquery

Hello Stackers

我又回来了,还有另一个jQuery问题。我一直试图让ID #notificationbutton的按钮每隔x秒刷新一次,但是,代码运行,控制台甚至没有显示错误,但它只是没有加载到另一页面。

的jQuery

$(document).ready(function () {
    setInterval(function() {
        $.get("notifyer.php", function (result) {
            $('#notificationbutton').html(result);
        });
    }, 5000);
});

带有SPAN的按钮

<button id="open_notificationcenter" class="btn btn-default btn-sm" target="_new"><span class="glyphicon glyphicon-bell" style="padding-right:5px; padding-top:1px;" aria-hidden="true"></span><span id="notifcationbutton"><?php echo $notif_count; ?></span></button>

文件notifyer.php

<?php
echo $notif_count; 
?>

当我浏览notifyer.php文件时,它确实显示实际计数。问题是jQuery,它只是不更新​​它!我不能来这里的是什么?

0 个答案:

没有答案