@H_502_1@我想要实现的是,最初将加载数据,然后使用相同的功能每十分钟更新一次.
考虑以下代码:
var updateNamespace = (function() { var object = '#updates',load = 'loader'; return { update: function() { $(object).addClass(load).load('update.PHP',function(reponse,status,xhr) { if (status == 'error') { $(this).html('<li>Sorry but there was an error in loading the news & updates.</li>'); } $(this).removeClass(load); }); } } })(); setInterval(updateNamespace.update(),600000);
我收到此错误:
useless setInterval call (missing quotes around argument?)
我怎样才能解决这个问题?
写这个或使用setInterval函数有什么更好,更优雅的方法?
谢谢.