Chinaunix首页 | 论坛 | 博客
  • 博客访问: 9152529
  • 博文数量: 1727
  • 博客积分: 12961
  • 博客等级: 上将
  • 技术积分: 19860
  • 用 户 组: 普通用户
  • 注册时间: 2009-01-09 11:25
个人简介

偷得浮生半桶水(半日闲), 好记性不如抄下来(烂笔头). 信息爆炸的时代, 学习是一项持续的工作.

文章分类

全部博文(1727)

文章存档

2024年(3)

2023年(26)

2022年(112)

2021年(217)

2020年(157)

2019年(192)

2018年(81)

2017年(78)

2016年(70)

2015年(52)

2014年(40)

2013年(51)

2012年(85)

2011年(45)

2010年(231)

2009年(287)

分类: Android平台

2014-04-15 09:29:04

http://blog.csdn.net/fdipzone/article/details/17619673

跨域互相访问


假设 A.html domain是 localhost, B.html domain 是 127.0.0.1 (跨域)

这里使用 localhost 与 127.0.0.1 只是方便测试,localhost 与 127.0.0.1已经不同一个域,因此执行效果是一样的。

实际使用时换成 与 即可。

A.html中iframe 嵌入 B.html,name=myframe

A.html有js function fMain()

B.html有js function fIframe()

需要实现 A.html 调用 B.html 的 fIframe(),B.html 调用 A.html 的 fMain() (跨域调用)


如果使用上面同域的方法,浏览器判断A.html 与 B.html 不同域,会有错误提示。

Uncaught SecurityError: Blocked a frame with origin "" from accessing a frame with origin "". Protocols, domains, and ports must match.


实现原理:

因为浏览器为了安全,禁止了不同域访问。因此只要调用与执行的双方是同域则可以相互访问


首先,A.html 如何调用B.html的 fIframe方法

1.在A.html 创建一个 iframe

2.iframe的页面放在 B.html 同域下,命名为execB.html

3.execB.html 里有调用B.html fIframe方法的js调用


[javascript] view plaincopy在CODE上查看代码片派生到我的代码片
  1. "text/javascript">  
  2. parent.window.myframe.fIframe(); // execute parent myframe fIframe function  
  3.   

这样A.html 就能通过 execB.html 调用 B.html 的 fIframe 方法了。


同理,B.html 需要调用A.html fMain方法,需要在B.html 嵌入与A.html 同域的 execA.html 

execA.html 里有调用 A.html fMain 方法的js 调用


[javascript] view plaincopy在CODE上查看代码片派生到我的代码片
  1. "text/javascript">  
  2. parent.parent.fMain(); // execute main function  
  3.   
这样就能实现 A.html 与 B.html 跨域相互调用。


A.html


[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. >  
  2. <html>  
  3.  <head>  
  4.   <meta http-equiv="content-type" content="text/html; charset=utf-8">  
  5.   <title> main window title>  
  6.   
  7.   <script type="text/javascript">  
  8.   
  9.   // main js function  
  10.   function fMain(){  
  11.     alert('main function execute success');  
  12.   }  
  13.   
  14.   // exec iframe function  
  15.   function exec_iframe(){  
  16.     if(typeof(exec_obj)=='undefined'){  
  17.         exec_obj = document.createElement('iframe');  
  18.         exec_obj.name = 'tmp_frame';  
  19.         exec_obj.src = '/execB.html';  
  20.         exec_obj.style.display = 'none';  
  21.         document.body.appendChild(exec_obj);  
  22.     }else{  
  23.         exec_obj.src = '/execB.html?' + Math.random();  
  24.     }  
  25.   }  
  26.   script>  
  27.   
  28.  head>  
  29.   
  30.  <body>  
  31.   <p>A.html mainp>  
  32.   <p><input type="button" value="exec iframe function" onclick="exec_iframe()">p>  
  33.   <iframe src="/B.html" name="myframe" width="500" height="100">iframe>  
  34.  body>  
  35. html>  

B.html



[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. >  
  2. <html>  
  3.  <head>  
  4.   <meta http-equiv="content-type" content="text/html; charset=utf-8">  
  5.   <title> iframe window title>  
  6.   
  7.   <script type="text/javascript">  
  8.   // iframe js function   
  9.   function fIframe(){  
  10.     alert('iframe function execute success');  
  11.   }  
  12.   
  13.   // exec main function  
  14.   function exec_main(){  
  15.     if(typeof(exec_obj)=='undefined'){  
  16.         exec_obj = document.createElement('iframe');  
  17.         exec_obj.name = 'tmp_frame';  
  18.         exec_obj.src = '/execA.html';  
  19.         exec_obj.style.display = 'none';  
  20.         document.body.appendChild(exec_obj);  
  21.     }else{  
  22.         exec_obj.src = '/execA.html?' + Math.random();  
  23.     }  
  24.   }  
  25.   script>  
  26.   
  27.  head>  
  28.   
  29.  <body>  
  30.   <p>B.html iframep>  
  31.   <p><input type="button" value="exec main function" onclick="exec_main()">p>  
  32.  body>  
  33. html>  

execA.html



[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. >  
  2. <html>  
  3.  <head>  
  4.   <meta http-equiv="content-type" content="text/html; charset=utf-8">  
  5.   <title> exec main function title>  
  6.  head>  
  7.   
  8.  <body>  
  9.     <script type="text/javascript">  
  10.         parent.parent.fMain(); // execute main function  
  11.     script>  
  12.  body>  
  13. html>  

execB.html



[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. >  
  2. <html>  
  3.  <head>  
  4.   <meta http-equiv="content-type" content="text/html; charset=utf-8">  
  5.   <title> exec iframe function title>  
  6.  head>  
  7.   
  8.  <body>  
  9.     <script type="text/javascript">  
  10.         parent.window.myframe.fIframe(); // execute parent myframe fIframe function  
  11.     script>  
  12.  body>  
  13. html>  

执行如下图:



阅读(4164) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~