我有我在下面粘贴的代码,由另一个 Stackoverflow 成员提供。我已将此代码添加到 Kentico Web 部件中,并设置了缓存minutes=0
,认为这将解决我的缓存问题。可以,但在 IE 中不行。有什么方法可以调整此代码以在用户访问页面时刷新内容,或者当我们必须更新 html 文件时?
// article footer
Date.prototype.getWeek = function() {
var onejan = new Date(this.getFullYear(),0,1);
var today = new Date(this.getFullYear(),this.getMonth(),this.getDate());
var dayOfYear = ((today - onejan +1)/86400000);
return Math.ceil(dayOfYear/7)
};
jQuery(function(){
//Quotes/Testimonials
var today = new Date();
var weekno = today.getWeek();
jQuery('#quotes-wrapper').load('/quotesroller.html div.quote-'+weekno);
});