方法一:
HTML codexmlHttp.open("GET", "default.aspx?param="+Math.random(), true);
或者
xmlHttp.open("GET", "default.aspx?param="+new Date().getTime(), true);
方法二:
xmlHttp.open("GET", "default.aspx", true);
xmlHttp.setRequestHeader("If-Modified-Since","0");
xmlHttp.send(null);jquery
----ajax
在別的網站看到的,ajax都是直接用jquery提供的,這個還沒測試過,先收藏了dom