by alex
今天做了两个实验,主要是为下一步的集成第三方域名做个铺垫
js的跨域调
准备了两个实现,一个是嵌套iframe实现,一个是通过发送302跳转实现。
代码1:
域1www.aaa.com
域2 www.bbb.com
域1
<html> <head> <script language="javascript" > //document.domain='10.1.43.51'; </script> </head> <body> <div id="result"></div> <iframe id="ppt" name="passport" src="http://www.bbb.com/ppt.html"></iframe> </body> </html>
域2:
<html> <head> <script language="javascript" > </script> </head> <body> asdfadfad <iframe src="http://www.aaa.com/mail123-2.html#status=0" id="sr" name="sr"/> </body> </html>
这个还在域1
<html> <head> <script language="javascript" > //window.top.alert(document.location.hash); window.top.document.getElementById('result').innerHTML = 'login success, passport params=' + document.location.hash; </script> </head> <body> mail123-2.html <div id="test">init</div> </body> </html>
测试通过。
方案2:
iframe中外域站点发302跳回本站,跳N条只要最终回来,都能正确调用。
业务需求不说了, 留个笔记,免得过几天忘记。