JavaScript跨域总结与解决办法

释放双眼,带上耳机,听听看~!
  • 什么是跨域
  • 1、document.domain+iframe的设置
  • 2、动态创建script
  • 3、利用iframe和location.hash
  • 4、window.name实现的跨域数据传输
  • 5、使用HTML5 postMessage
  • 6、利用flash

什么是跨域

JavaScript出于安全方面的考虑,不允许跨域调用其他页面的对象。但在安全限制的同时也给注入iframe或是ajax应用上带来了不少麻烦。这里把涉及到跨域的一些问题简单地整理一下:

首先什么是跨域,简单地理解就是因为JavaScript同源策略的限制,a.com 域名下的js无法操作b.com或是c.a.com域名下的对象。更详细的说明可以看下表:

http://www.a.com/a.js http://www.a.com/b.js
同一域名下
允许
http://www.a.com/lab/a.js http://www.a.com/script/b.js
同一域名下不同文件夹
允许
http://www.a.com:8000/a.js http://www.a.com/b.js
同一域名,不同端口
不允许
http://www.a.com/a.js https://www.a.com/b.js
同一域名,不同协议
不允许
http://www.a.com/a.js http://70.32.92.74/b.js
域名和域名对应ip
不允许
http://www.a.com/a.js http://script.a.com/b.js
主域相同,子域不同
不允许
http://www.a.com/a.js http://a.com/b.js
同一域名,不同二级域名(同上)
不允许(cookie这种情况下也不允许访问)
http://www.cnblogs.com/a.js http://www.a.com/b.js
不同域名
不允许

特别注意两点:
第一,如果是协议和端口造成的跨域问题“前台”是无能为力的,
第二:在跨域问题上,域仅仅是通过“URL的首部”来识别而不会去尝试判断相同的ip地址对应着两个域或两个域是否在同一个ip上。
“URL的首部”指window.location.protocol +window.location.host,也可以理解为“Domains, protocols and ports must match”。

接下来简单地总结一下在“前台”一般处理跨域的办法,后台proxy这种方案牵涉到后台配置,这里就不阐述了,有兴趣的可以看看yahoo的这篇文章:《JavaScript: Use a Web Proxy for Cross-Domain XMLHttpRequest Calls

1、document.domain+iframe的设置

对于主域相同而子域不同的例子,可以通过设置document.domain的办法来解决。具体的做法是可以在http://www.a.com/a.html和http://script.a.com/b.html两个文件中分别加上document.domain = ‘a.com’;然后通过a.html文件中创建一个iframe,去控制iframe的contentDocument,这样两个js文件之间就可以“交互”了。当然这种办法只能解决主域相同而二级域名不同的情况,如果你异想天开的把script.a.com的domian设为alibaba.com那显然是会报错地!代码如下:

www.a.com上的a.html


1
2
3
4
5
6
7
8
9
10
11
1document.domain = 'a.com';
2var ifr = document.createElement('iframe');
3ifr.src = 'http://script.a.com/b.html';
4ifr.style.display = 'none';
5document.body.appendChild(ifr);
6ifr.onload = function(){
7    var doc = ifr.contentDocument || ifr.contentWindow.document;
8    // 在这里操纵b.html
9    alert(doc.getElementsByTagName("h1")[0].childNodes[0].nodeValue);
10};
11

script.a.com上的b.html


1
2
1document.domain = 'a.com';
2

这种方式适用于{www.kuqin.com, kuqin.com, script.kuqin.com, css.kuqin.com}中的任何页面相互通信。

备注:某一页面的domain默认等于window.location.hostname。主域名是不带www的域名,例如a.com,主域名前面带前缀的通常都为二级域名或多级域名,例如www.a.com其实是二级域名。 domain只能设置为主域名,不可以在b.a.com中将domain设置为c.a.com。

问题:
1、安全性,当一个站点(b.a.com)被攻击后,另一个站点(c.a.com)会引起安全漏洞。
2、如果一个页面中引入多个iframe,要想能够操作所有iframe,必须都得设置相同domain。

2、动态创建script

虽然浏览器默认禁止了跨域访问,但并不禁止在页面中引用其他域的JS文件,并可以自由执行引入的JS文件中的function(包括操作cookie、Dom等等)。根据这一点,可以方便地通过创建script节点的方法来实现完全跨域的通信。具体的做法可以参考YUI的Get Utility

这里判断script节点加载完毕还是蛮有意思的:ie只能通过script的readystatechange属性,其它浏览器是script的load事件。以下是部分判断script加载完毕的方法。


1
2
3
4
5
6
7
1js.onload = js.onreadystatechange = function() {
2    if (!this.readyState || this.readyState === 'loaded' || this.readyState === 'complete') {
3        // callback在此处执行
4        js.onload = js.onreadystatechange = null;
5    }
6};
7

3、利用iframe和location.hash

这个办法比较绕,但是可以解决完全跨域情况下的脚步置换问题。原理是利用location.hash来进行传值。在url: http://a.com\#helloword中的‘\#helloworld’就是location.hash,改变hash并不会导致页面刷新,所以可以利用hash值来进行数据传递,当然数据容量是有限的。假设域名a.com下的文件cs1.html要和cnblogs.com域名下的cs2.html传递信息,cs1.html首先创建自动创建一个隐藏的iframe,iframe的src指向cnblogs.com域名下的cs2.html页面,这时的hash值可以做参数传递用。cs2.html响应请求后再将通过修改cs1.html的hash值来传递数据(
由于两个页面不在同一个域下IE、Chrome不允许修改parent.location.hash的值,所以要借助于a.com域名下的一个代理iframe;Firefox可以修改)。同时在cs1.html上加一个定时器,隔一段时间来判断location.hash的值有没有变化,一点有变化则获取获取hash值。代码如下:

先是a.com下的文件cs1.html文件:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
1function startRequest(){
2    var ifr = document.createElement('iframe');
3    ifr.style.display = 'none';
4    ifr.src = 'https://www.daimajiaoliu.com/series/javascript/46e6792a39003fc#heading-1';
5    document.body.appendChild(ifr);
6}
7
8function 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}
16setInterval(checkHash, 2000);
17

cnblogs.com域名下的cs2.html:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
1//模拟一个简单的参数处理操作
2switch(location.hash){
3    case '#heading-1':
4        callBack();
5        break;
6    case '#heading-2':
7        //do something……
8        break;
9}
10
11function 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}
23

a.com下的域名cs3.html


1
2
3
1//因为parent.parent和自身属于同一个域,所以可以改变其location.hash的值
2parent.parent.location.hash = self.location.hash.substring(1);
3

当然这样做也存在很多缺点,诸如数据直接暴露在了url中,数据容量和类型都有限等……

4、window.name实现的跨域数据传输

5、使用HTML5 postMessage

HTML5中最酷的新功能之一就是 跨文档消息传输Cross Document Messaging。下一代浏览器都将支持这个功能:Chrome 2.0+、Internet Explorer 8.0+, Firefox 3.0+, Opera 9.6+, 和 Safari 4.0+ 。 Facebook已经使用了这个功能,用postMessage支持基于web的实时消息传递。

otherWindow.postMessage(message, targetOrigin);

otherWindow: 对接收信息页面的window的引用。可以是页面中iframe的contentWindow属性; window.open的返回值;通过name或下标从 window.frames取到的值。

message: 所要发送的数据,string类型。

targetOrigin: 用于限制otherWindow,“*”表示不作限制

a.com/index.html中的代码:


1
2
3
4
5
6
7
8
9
10
1<iframe id="ifr" src="b.com/index.html"></iframe>
2<script type="text/javascript">
3window.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>
10

b.com/index.html中的代码:


1
2
3
4
5
6
7
8
9
10
11
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>
11

参考文章:《精通HTML5编程》第五章——跨文档消息机制链接地址

6、利用flash

这是从YUI3的IO组件中看到的办法,具体可见链接地址
可以看在Adobe Developer Connection看到更多的跨域代理文件规范:ross-Domain Policy File SpecificationsHTTP Headers Blacklist

给TA打赏
共{{data.count}}人
人已打赏
安全技术

C++ explicit关键字

2022-1-11 12:36:11

安全经验

Spring Cloud构建微服务架构:服务消费(Feign)【Dalston版】

2021-11-28 16:36:11

个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索