码迷,mamicode.com
首页 > 其他好文 > 详细

跨浏览器的CORS

时间:2014-06-27 22:02:10      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   ext   

 1 function createCORSRequest(method, url){
 2      var xhr = new XMLHttpRequest();
 3      
 4      if("withCredentials" in xhr){
 5          xhr.open(method, url, true);
 6      }else if(typeof XDomainRequest != "undefined"){
 7          xhr = new XDomainRequest();
 8          xhr.open(method, url);
 9      }else{
10          xhr = null;
11      }
12 
13      return xhr;
14 }
15 
16 var request = createCORSRequest("get", "http://www.somewhere-else.com/page/");
17 
18 if(request){
19     request.onload = function(){
20          //对request.responseText 进行处理
21     }
22 
23     request.send();
24 }

 

跨浏览器的CORS,布布扣,bubuko.com

跨浏览器的CORS

标签:style   class   blog   code   http   ext   

原文地址:http://www.cnblogs.com/yiliweichinasoft/p/3807362.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!