1.同源策略以下:
- 特別注意兩點:
- 第一, 若是是協議和端口形成的跨域問題「前臺」是無能爲力的,
- 第二: 在跨域問題上,域僅僅是經過「URL的首部」來識別而不會去嘗試判斷相同的ip地址對應着兩個域或兩個域是否在同一個ip上。
- 「URL的首部」指window.location.protocol +window.location.host,也能夠理解爲「Domains, protocols and ports must match」。
2. 前端解決跨域問題
1> document.domain + iframe (只有在主域相同的時候才能使用該方法)
1) 在www.a.com/a.html中:html
1 document.domain = 'a.com'; 2 var ifr = document.createElement('iframe'); 3 ifr.src = 'http://www.script.a.com/b.html'; 4 ifr.display = none; 5 document.body.appendChild(ifr); 6 ifr.onload = function(){ 7 var doc = ifr.contentDocument || ifr.contentWindow.document; 8 //在這裏操做doc,也就是b.html 9 ifr.onload = null; 10 };
2) 在www.script.a.com/b.html中:前端
document.domain = 'a.com';
2> 動態建立script
這個沒什麼好說的,由於script標籤不受同源策略的限制。java
1 function loadScript(url, func) { 2 var head = document.head || document.getElementByTagName('head')[0]; 3 var script = document.createElement('script'); 4 script.src = url; 5 6 script.onload = script.onreadystatechange = function(){ 7 if(!this.readyState || this.readyState=='loaded' || this.readyState=='complete'){ 8 func(); 9 script.onload = script.onreadystatechange = null; 10 } 11 }; 12 13 head.insertBefore(script, 0); 14 } 15 window.baidu = { 16 sug: function(data){ 17 console.log(data); 18 } 19 } 20 loadScript('http://suggestion.baidu.com/su?wd=w',function(){console.log('loaded')}); 21 //咱們請求的內容在哪裏? 22 //咱們能夠在chorme調試面板的source中看到script引入的內容
3> location.hash + iframe
原理是利用location.hash來進行傳值。web
假設域名a.com下的文件cs1.html要和cnblogs.com域名下的cs2.html傳遞信息。
1) cs1.html首先建立自動建立一個隱藏的iframe,iframe的src指向cnblogs.com域名下的cs2.html頁面
2) cs2.html響應請求後再將經過修改cs1.html的hash值來傳遞數據
3) 同時在cs1.html上加一個定時器,隔一段時間來判斷location.hash的值有沒有變化,一旦有變化則獲取獲取hash值
注:因爲兩個頁面不在同一個域下IE、Chrome不容許修改parent.location.hash的值,因此要藉助於a.com域名下的一個代理iframe
代碼以下:
先是a.com下的文件cs1.html文件: chrome
1 function startRequest(){ 2 var ifr = document.createElement('iframe'); 3 ifr.style.display = 'none'; 4 ifr.src = 'http://www.cnblogs.com/lab/cscript/cs2.html#paramdo'; 5 document.body.appendChild(ifr); 6 } 7 8 function checkHash() { 9 try { 10 var data = location.hash ? location.hash.substring(1) : ''; 11 if (console.log) { 12 console.log('Now the data is '+data); 13 } 14 } catch(e) {}; 15 } 16 setInterval(checkHash, 2000);
cnblogs.com域名下的cs2.html: json
1 //模擬一個簡單的參數處理操做 2 switch(location.hash){ 3 case '#paramdo': 4 callBack(); 5 break; 6 case '#paramset': 7 //do something…… 8 break; 9 } 10 11 function callBack(){ 12 try { 13 parent.location.hash = 'somedata'; 14 } catch (e) { 15 // ie、chrome的安全機制沒法修改parent.location.hash, 16 // 因此要利用一箇中間的cnblogs域下的代理iframe 17 var ifrproxy = document.createElement('iframe'); 18 ifrproxy.style.display = 'none'; 19 ifrproxy.src = 'http://a.com/test/cscript/cs3.html#somedata'; // 注意該文件在"a.com"域下 20 document.body.appendChild(ifrproxy); 21 } 22 }
a.com下的域名cs3.html 跨域
1 //由於parent.parent和自身屬於同一個域,因此能夠改變其location.hash的值 2 parent.parent.location.hash = self.location.hash.substring(1);
4> window.name + iframe
window.name 的美妙之處:name 值在不一樣的頁面(甚至不一樣域名)加載後依舊存在,而且能夠支持很是長的 name 值(2MB)。瀏覽器
1) 建立a.com/cs1.html安全
2) 建立a.com/proxy.html,並加入以下代碼
1 <head> 2 <script> 3 function proxy(url, func){ 4 var isFirst = true, 5 ifr = document.createElement('iframe'), 6 loadFunc = function(){ 7 if(isFirst){ 8 ifr.contentWindow.location = 'http://a.com/cs1.html'; 9 isFirst = false; 10 }else{ 11 func(ifr.contentWindow.name); 12 ifr.contentWindow.close(); 13 document.body.removeChild(ifr); 14 ifr.src = ''; 15 ifr = null; 16 } 17 }; 18 19 ifr.src = url; 20 ifr.style.display = 'none'; 21 if(ifr.attachEvent) ifr.attachEvent('onload', loadFunc); 22 else ifr.onload = loadFunc; 23 24 document.body.appendChild(iframe); 25 } 26 </script> 27 </head> 28 <body> 29 <script> 30 proxy('http://www.baidu.com/', function(data){ 31 console.log(data); 32 }); 33 </script> 34 </body>
3 在b.com/cs1.html中包含:
1 <script> 2 window.name = '要傳送的內容'; 3 </script>
5> postMessage(HTML5中的XMLHttpRequest Level 2中的API)
1) a.com/index.html中的代碼:
1 <iframe id="ifr" src="b.com/index.html"></iframe> 2 <script type="text/javascript"> 3 window.onload = function() { 4 var ifr = document.getElementById('ifr'); 5 var targetOrigin = 'http://b.com'; // 若寫成'http://b.com/c/proxy.html'效果同樣 6 // 若寫成'http://c.com'就不會執行postMessage了 7 ifr.contentWindow.postMessage('I was there!', targetOrigin); 8 }; 9 </script>
2) b.com/index.html中的代碼:
1 <script type="text/javascript"> 2 window.addEventListener('message', function(event){ 3 // 經過origin屬性判斷消息來源地址 4 if (event.origin == 'http://a.com') { 5 alert(event.data); // 彈出"I was there!" 6 alert(event.source); // 對a.com、index.html中window對象的引用 7 // 但因爲同源策略,這裏event.source不能夠訪問window對象 8 } 9 }, false); 10 </script>
6> CORS
CORS背後的思想,就是使用自定義的HTTP頭部讓瀏覽器與服務器進行溝通,從而決定請求或響應是應該成功,仍是應該失敗。
IE中對CORS的實現是xdr
1 var xdr = new XDomainRequest(); 2 xdr.onload = function(){ 3 console.log(xdr.responseText); 4 } 5 xdr.open('get', 'http://www.baidu.com'); 6 ...... 7 xdr.send(null);
其它瀏覽器中的實現就在xhr中
1 var xhr = new XMLHttpRequest(); 2 xhr.onreadystatechange = function () { 3 if(xhr.readyState == 4){ 4 if(xhr.status >= 200 && xhr.status < 304 || xhr.status == 304){ 5 console.log(xhr.responseText); 6 } 7 } 8 } 9 xhr.open('get', 'http://www.baidu.com'); 10 ...... 11 xhr.send(null);
實現跨瀏覽器的CORS
1 function createCORS(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 var xhr = new XDomainRequest(); 7 xhr.open(method, url); 8 }else{ 9 xhr = null; 10 } 11 return xhr; 12 } 13 var request = createCORS('get', 'http://www.baidu.com'); 14 if(request){ 15 request.onload = function(){ 16 ...... 17 }; 18 request.send(); 19 }
7> JSONP
JSONP包含兩部分:回調函數和數據。
回調函數是當響應到來時要放在當前頁面被調用的函數。
數據就是傳入回調函數中的json數據,也就是回調函數的參數了。
1 function handleResponse(response){ 2 console.log('The responsed data is: '+response.data); 3 } 4 var script = document.createElement('script'); 5 script.src = 'http://www.baidu.com/json/?callback=handleResponse'; 6 document.body.insertBefore(script, document.body.firstChild); 7 /*handleResonse({"data": "zhe"})*/ 8 //原理以下: 9 //當咱們經過script標籤請求時 10 //後臺就會根據相應的參數(json,handleResponse) 11 //來生成相應的json數據(handleResponse({"data": "zhe"})) 12 //最後這個返回的json數據(代碼)就會被放在當前js文件中被執行 13 //至此跨域通訊完成
jsonp雖然很簡單,可是有以下缺點:
1)安全問題(請求代碼中可能存在安全隱患)
2)要肯定jsonp請求是否失敗並不容易
8> web sockets
web sockets是一種瀏覽器的API,它的目標是在一個單獨的持久鏈接上提供全雙工、雙向通訊。(同源策略對web sockets不適用)
web sockets原理:在JS建立了web socket以後,會有一個HTTP請求發送到瀏覽器以發起鏈接。取得服務器響應後,創建的鏈接會使用HTTP升級從HTTP協議交換爲web sockt協議。
只有在支持web socket協議的服務器上才能正常工做。
1 var socket = new WebSockt('ws://www.baidu.com');//http->ws; https->wss 2 socket.send('hello WebSockt'); 3 socket.onmessage = function(event){ 4 var data = event.data; 5 }