我有以下代码,每隔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
});
});