为了账号安全,请及时绑定邮箱和手机立即绑定

一个Ajax简单例子,那里错了?就是没反应!

一个Ajax简单例子,那里错了?就是没反应!

慕粉小奋青 2016-06-30 17:55:02
<script type="text/javascript">    function Ajax(){    var xmlHttpReq=null; if(window.ActiveXObject){ xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP"); } else if(window.XMLHttpRequest){ xmlHttpReq=new XMLHttpRequest(); } xmlHttpReq.open("GET","text.php",true); xmlHttpReq.onreadystatechange=RequestCallBack; xmlHttpReq.send(null); function RequestCallBack(){ if(xmlHttpReq.readyState==4){ if(xmlHttpReq.status==200){ document.getElementById("resText").innerHTML=xmlHttpReq.responseText; } } } } </script></head><body><input type="button" value="Ajax提交" onclick="Ajax()" /><div id="resText"> </div></body></html>index.html:21 XMLHttpRequest cannot load file:///F:/%E8%81%8A%E5%A4%A9%E5%AE%A4/text.php. Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https, chrome-extension-resource.Ajax @ index.html:21
查看完整描述

2 回答

?
柠檬酸钠

TA贡献331条经验 获得超534个赞

楼主是不是在本地直接以file:///的格式打开的文件,ajax不支持本地模式哦,还有本地的php文件也跑不起来,没法执行,楼主可以搭建个本地服务器试试

查看完整回答
1 反对 回复 2016-06-30
  • 2 回答
  • 0 关注
  • 2505 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信