CHROME 支持ajax
场景:chrome不支持ajax?解决方案
chrome不支持ajax?
相同的代码,IE9能运行,Chrome一点反应都没有,求解
代码是w3school里的,我只是改了那个.asp的地址,把相对路径改成了绝对路径。
------解决方案--------------------
xmlhttp.open("GET","http://www.w3school.com.cn/ajax/demo_get.asp",true);
跨域了。IE非http请求可以跨域,其他非IE核心浏览器非http请求无法跨域
IE浏览器通过服务器访问时也无法跨域的,要做代理
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浏览器通过服务器访问时也无法跨域的,要做代理