jquery比较函数然后刷新

时间:2012-12-31 09:44:39

标签: jquery function compare refresh

我有以下代码,每隔30秒重新加载一次pollastation函数。

jQuery(document).ready(function() {
    pollstation();
    setInterval(pollstation, 30000);
});

我想要实现的是每隔30秒检查一次此代码以比较函数pollstation,如果pollstation内容相同则不刷新,但如果不同则刷新

我必须告诉你,我只知道JavaScript的基础知识。

我搜索了Google,并尝试使用下面的代码,但它没有用。

jQuery(document).ready(function() {
    pollstation();
   pollstation.load(pollstation + Math.random());
   var refreshId = setInterval(function () {
         pollstation.load(pollstation + Math.random());
      }, 30000);
   $.ajaxSetup({
      cache : false
   });   
}); 

0 个答案:

没有答案