本文介绍了NETWORK_ERR:XMLHtt prequest异常101的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Chrome浏览器中的一个AJAX的问题,给了以下错误:
未捕获的错误:NETWORK_ERR:XMLHtt prequest异常101
这是我的code:
功能IO(文件名){
如果(window.XMLHtt prequest){// Mozilla中,Safari浏览器,...
XMLHTTP =新XMLHtt prequest();
}否则,如果(window.ActiveXObject){// IE
尝试 {
XMLHTTP =新的ActiveXObject(MSXML2.XMLHTTP);
}赶上(五){
尝试 {
XMLHTTP =新的ActiveXObject(Microsoft.XMLHTTP);
}赶上(五){}
}
}
xmlhttp.open(GET,文件名+随机=?+ Math.floor(的Math.random()* 100000001),FALSE);
xmlhttp.send();
如果(xmlhttp.readyState == 4)
返回xmlhttp.responseXML;
}
解决方案
该解决方案是异步
参数设置为真
:
xmlhttp.open(?随机=GET,文件名+ Math.floor(的Math.random()* 100000001),TRUE);
I'm having an AJAX problem in Chrome, giving the following error:
Uncaught Error: NETWORK_ERR: XMLHttpRequest Exception 101
This is my code:
function IO(filename) {
if (window.XMLHttpRequest) { // Mozilla, Safari,...
xmlhttp = new XMLHttpRequest();
} else if (window.ActiveXObject) { // IE
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) { }
}
}
xmlhttp.open("GET", filename+"?random="+Math.floor(Math.random()*100000001), false);
xmlhttp.send();
if(xmlhttp.readyState==4)
return xmlhttp.responseXML;
}
解决方案
The solution is setting the async
parameter to true
:
xmlhttp.open("GET", filename+"?random="+Math.floor(Math.random()*100000001), true);
这篇关于NETWORK_ERR:XMLHtt prequest异常101的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!