就是请求的url需要加上 ashx?r=Math.random() 吗
怕浏览器会缓存着 之前有过在IE下 点击了 但后台没有响应
------解决方案--------------------------------------------------------
xmlHttp.open('GET','ajax.asp?name=name&random='+Math.random()+'&tamp='+new Date().getTime());
xmlHttp.send(null);
------解决方案--------------------------------------------------------
- JScript code
$.post("/Warn/GetMsg/?dt=" + +new Date().getTime() + Math.random(), function (msg) { //进行处理 });
------解决方案--------------------------------------------------------
ajax请求时:
url:"Default.aspx?Ran=" +new Date(),
------解决方案--------------------------------------------------------
$.ajax({
url: "test.ashx",
cache: false