翻过高山走不出你
估计是你的 XMLHttpRequest() 这个方法有问题。Chrome与IE浏览器创建XMLHttpRequest是不一样的。123456789101112131415161718192021222324252627282930313233if(window.XMLHttpRequest) { // 针对非IE的标准浏览器 xmlhttp = new XMLHttpRequest(); } else if(window.ActiveXObject) { // 针对IE try { xmlhttp = new ActiveXObject("MSXML2.XMLHTTP"); } catch(e) { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } }