首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Ajax >

chrome不支持ajax?该怎么解决

2013-01-07 
chrome不支持ajax?相同的代码,IE9能运行,Chrome一点反应都没有,求解htmlheadscript typetext/javas

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

<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浏览器通过服务器访问时也无法跨域的,要做代理

热点排行