读书人

chrome不支持ajax?解决方案

发布时间: 2012-09-10 11:02:32 作者: rapoo

chrome不支持ajax?
相同的代码,IE9能运行,Chrome一点反应都没有,求解

HTML code
<html><head><script type="text/javascript">function loadXMLDoc(){    var xmlhttp;    if (window.XMLHttpRequest)    {        xmlhttp=new XMLHttpRequest();    }    else    {        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");    }    xmlhttp.onreadystatechange=function()    {        if (xmlhttp.readyState==4 && xmlhttp.status==200)        {            document.getElementById("myDiv").innerHTML=xmlhttp.responseText;        }    }xmlhttp.open("GET","http://www.w3school.com.cn/ajax/demo_get.asp",true);xmlhttp.send();}</script></head><body><h2>AJAX</h2><button type="button" onClick="loadXMLDoc()">请求数据</button><div id="myDiv"></div></body></html>

代码是w3school里的,我只是改了那个.asp的地址,把相对路径改成了绝对路径。

[解决办法]
xmlhttp.open("GET","http://www.w3school.com.cn/ajax/demo_get.asp",true);

跨域了。IE非http请求可以跨域,其他非IE核心浏览器非http请求无法跨域

IE浏览器通过服务器访问时也无法跨域的,要做代理

读书人网 >Ajax

热点推荐