问题如题
解决方法
打开ks_inc/kesion.common.js
找到以下代码
jQuery("*[type='showhits']").each(function(){
var url=appurl+"model/GetHits.aspx?action="+jQuery(this).prop("action")+"&f="+jQuery(this).prop("f")+"&t="+jQuery(this).prop("t")+"&id="+jQuery(this).prop("id")+"&anticache=" + Math.floor(Math.random()*1000);
var o=jQuery(this);
jQuery.ajax({type:"get",async:false,url:url,cache:false,success:function(d){ o.html(d);
}
});
});
修改为
jQuery("*[type='showhits']").each(function(){
var url=appurl+"model/GetHits.aspx?action="+jQuery(this).attr("action")+"&f="+jQuery(this).attr("f")+"&t="+jQuery(this).attr("t")+"&id="+jQuery(this).attr("id")+"&anticache=" + Math.floor(Math.random()*1000);
var o=jQuery(this);
jQuery.ajax({type:"get",async:false,url:url,cache:false,success:function(d){ o.html(d); }
});
});
Tips:本主题已被版主或管理员关闭,可以正常浏览,但不能发表回复!