window.setInterval(function(){
$('#Notify-Bar').html('a new notification');
}, 5000);
无法在IE上运行,但在其他主要网络浏览器(如Chrome,Firefox,Opera)上运行良好...
答案 0 :(得分:4)
您应该使用类似
的内容setInterval("myFunc()",5000);
function myFunc()
{
$('#Notify-Bar').html('a new notification');
}