时间:2021-07-01 10:21:17 帮助过:11人阅读
url上加随机数,100%避免缓存
如:
"xxxx.htm?tag="+new Date().getTime()
真心不行。。。。。
css文件,js文件的url也加上时间戳试试,
时间戳防缓存是经过验证的有效手段,不会不行
给JS文件加url?? 这个不知道怎么弄。。 求教。。。
刚没仔细看,你这个是activex控件吧,你可以找到加载这个activex的位置,给其虚拟路径加上时间戳
function createXHR() {
var xhr;
try {
xhr = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e) {
try {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (E) {
xhr = false;
}
}
if (!xhr && typeof XMLHttpRequest != 'undefined') {
xhr = new XMLHttpRequest();
}
return xhr;
} 大侠。。你看这个。。。怎么加时间戳。。 加在哪。。。
<% Response.CacheControl = "no-cache" %>
<% Response.AddHeader "Pragma", "no-cache" %>
<% Response.Expires = -1 %>
response.addHeader "Cache-Control", "max-age=0,no-cache,no-store"