方法一:加If-Modified-Since頭
xmlhttp多次調(diào)用時它卻總是顯示緩存頁面, 嘗試在 php 或 asp 中加入相應(yīng)的http頭明確不要緩存, 也沒什么效果!!
現(xiàn)在終于找到一個辦法啦,就是在 xmlhttp.open 之后發(fā)送一個If-Modified-Since頭即可, 代碼如下
xmlhttp.setRequestHeader('If-Modified-Since', '0');
xmlHttp.onreadystatechange = stateChanged;
xmlHttp.open("GET", url, true);
xmlHttp.setRequestHeader('If-Modified-Since', '0');
xmlHttp.send(null);
方法二:請求URL后加變化參數(shù)
因為IE默認(rèn)將相同的URL請求進行緩存,所以URL加上唯一區(qū)分的參數(shù)作為區(qū)分,保持每次請求的URL不同,即可繞過IE緩存的問題
js: URL = "http://host/a.php"+"?"+Math.random();
vbs: URL = "http://host/a.php"&"?"&Timer()
//var url = "ResponseContentPageScore.aspx?key=" + Math.round(Math.random() * 100) + "&HotelCD=" + inputContent;
var url = "ResponseContentPageScore.aspx?key=" + new Date().getTime() + "&HotelCD=" + inputContent;
該文章在 2014/2/24 17:33:14 編輯過