首页 > 代码库 > 跨浏览器的CORS
跨浏览器的CORS
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 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。