ajax調用的返回數據會被緩存,調用靜態html ,即使把html修改了,IE依有可能然用原來的數據顯示。 而firefox可以正常顯示新的數據。
解決辦法:
prototype的GET中,設置
pars = "mod=readArticle&fid='+$F('fid')+'&rand='+Math.random();
使用java提供的方法設置http頭信息,在jsp或者servlet中都可以
response.setHeader("Pragma","No-cache");
response.setHeader("Cache-Control","no-cache");
response.setDateHeader("Expires", 0);
使用HTML標記,如下:
<HEAD>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="0">
</HEAD>