Javascript跨域
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Javascript跨域相关的知识,希望对你有一定的参考价值。
这几天整理了javascript跨域的东西,终于比较完整了
附上CORS代码:
1 function createCORSRequest(method, url) { 2 var xhr = new XMLHttpRequest(); 3 if ("withCredentials" in xhr) { 4 xhr.open(method, url, true); 5 } else if (typeof XDomainRequest!= "undefined") { 6 xhr = new XDomainRequest(); 7 xhr.open(method, url); 8 } else { 9 // 否则,浏览器不支持CORS 10 xhr = null; 11 } 12 return xhr; 13 }
以上是关于Javascript跨域的主要内容,如果未能解决你的问题,请参考以下文章