我对本地http服务器进行了ajax调用,但我在 IE 11 中的xmlhttp.open("GET", "http://localhost//push", true);
错误函数中出错,以下是我的完整代码
var xmlhttp;
if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
}
else {// code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
....some code.....
}}
}
xmlhttp.open("GET", "http://localhost//push", true);
xmlhttp.send();
}
IE使用new XMLHttpRequest();
答案 0 :(得分:1)
最后我得到了一个非常愚蠢的答案问题,在Chrome网址中可以是"http://localhost//push"
但在IE中它应该有反斜杠而不是正斜杠"http:\\localhost\\push"
,否则它会显示功能不正确