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>