解决不同主域跨域的问题
在一些项目中可能会遇到不同主域名之间的一些跨域操作,这个时候最蛋疼了,不过不用担心,史上原理最简单的解决方法诞生了,然人一看就懂。
示例:
www.a.com下有a.html和c.html
www.b.com下有b.html
事件回放:www.a.com下a.html,a.html内iframe调用了www.b.com下的b.html,b.html下iframe调用了www.a.com下的c.html,b.html是不无法直接访问a.html的对象,因为涉及到跨域,但可以访问parent,同样c.html的parent可以访问b.html。c.html和a.html同域,是可以访问a下的对象的。parent.parent.js对象!
看下面实例:
a.html
<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> </head> <body> <iframe src="http://www.b.com/b.html" ></iframe> <ul id="getText"></ul> <script> function do(t){ document.getElementById("getText").innerHTML= decodeURI(t); } </script> </body> </html>
b.html
<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> </head> <body> <iframe id="myfarme" src="###"></iframe> <ul id="ct"> <li>这里是内容1</li> <li>这里是内容2</li> <li>这里是内容3</li> <li>这里是内容4</li> <li>这里是内容5</li> <li>这里是内容6</li> </ul> <script> window.onload = function(){ var text = document.getElementById('ct').innerHTML; document.getElementById('myfarme').src="http://www.a.com/c.html?content="+encodeURI(text); } </script> </body> </html>
c.html
<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> <script> window.onload = function(){ var text = window.location.href.split('=')[1] console.log(parent.parent) parent.parent.do(text); } </script> </head> <body> ddddddddddd </body> </html>
照着这个示例做,很简单不是吗?
暂无评论