Ajax如何进行跨域请求?Ajax跨域请求的原理
本文实例为大家分享了ajax跨域请求的具体实现过程,供大家参考,具体内容如下
下面我们在本地建两个站点演示一下
第一步首先我们在本地搭建好一个apache服务器;;
第二步服务器配置好以后,在本地配置好两个虚拟的域名;
第三步我们在c盘建一个文件夹命名为”html5”;
第四步找到apache虚拟主机的配置文件,然后打开配置文件
第五步在第三步建的html5文件夹下分别建一个文件夹a和文件夹b;
第六步修改apache虚拟主机的配置文件,如图
第七步修改一下host文件,添加a和b的网址,通常host文件路径在c:\windows\system32\drivers\etc 下
我们在html5/a文件夹下建一个7.ajax.html文件
<!doctype html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>获取同域下内容</title> <script> window.onload = function() { var obtn = document.getelementbyid('btn'); // 忽略ie6 obtn.onclick = function() { //创建一个ajax对象 var xhr = new xmlhttprequest(); //监听事件 xhr.onreadystatechange = function() { if (xhr.readystate == 4) { if (xhr.status == 200) { alert(xhr.responsetext); } } } xhr.open('get', 'ajax.php', true); xhr.send(); } } </script> </head> <body> <input type="button" value="获取同域下内容" id="btn" /> </body> </html>
我们先看一下同域下的请求
我们在html5/a下建一个php文件,返回'hello';
这时候我们在打开当前页面 http://www.a.com/7.ajax.html ,点击按钮我们发现请求到了数据;
http://www.a.com/7.ajax.html
但是如果跨域的话,即你所请求的数据和当前文件不在一个域下面,这样的话就会产生跨域请求,通常在这种情况下就会禁止你去访问
例如我们现在将刚才在html5/a文件夹下的ajax.php文件放到b文件夹下
这时候点击后我们发现请求报错了,意思是跨域请求受到了限制
这时候我们需要后端配合,你需要告诉后端在输出的时候加一个”access-control-allow-origin”头信息
比如说:如图,意思只要是这个域名的跨域请求就不受跨域策略的影响
这时候我点击的时候,就可以正常获取跨域的数据了
如果你想兼容ie需要
<!doctype html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>ajax跨域请求</title> <script> window.onload = function() { /* 在标准浏览器下,xmlhttprequest对象已经是升级版本,支持了更多的特性,可以跨域了 但是,如果想实现跨域请求,还需要后端的相关配合才可以 xmlhttprequest : 增加很多功能,他也不推荐使用onreadystatechange这个事件来监听,推荐使用onload */ var obtn = document.getelementbyid('btn'); obtn.onclick = function() { // 这是标准浏览器写法 var xhr = new xmlhttprequest(); xhr.onreadystatechange = function() { if (xhr.readystate == 4) { if (xhr.status == 200) { alert(xhr.responsetext); } } } xhr.open('get', 'http://www.b.com/ajax.php', true); xhr.send(); /* 如果你想兼容ie浏览器,可以特地为ie做兼容,忽略ie6 xdomainrequest : ie如果想实现跨域请求,则需要使用这个对象去实现 var oxdomainrequest = new xdomainrequest(); oxdomainrequest.onload = function() { alert(this.responsetext); } oxdomainrequest.open('get', 'http://www.b.com/ajax.php', true); oxdomainrequest.send(); */ } } </script> </head> <body> <input type="button" value="获取同域下内容" id="btn" /> </body> </html>
关于ie,详情请访问 https://msdn.microsoft.com/en-us/library/cc288060(vs.85).aspx
ajax最新标准请访问 https://www.w3.org/tr/xmlhttprequest2/
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: css如何让图片和文字垂直居中对齐
下一篇: css li怎么水平居中对齐