iframe与主框架跨域相互访问方法

本文介绍如何在同域及跨域环境下实现主框架与iframe之间的相互访问。通过创建额外的iframe来间接调用目标窗口的方法,解决跨域访问限制。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

原文地址:http://blog.youkuaiyun.com/fdipzone/article/details/17619673


iframe 与主框架相互访问方法


1.同域相互访问


假设A.html 与 b.html domain都是localhost (同域)

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

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  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.   // main js function  
  9.   function fMain(){  
  10.     alert('main function execute success');  
  11.   }  
  12.   
  13.   // exec iframe function  
  14.   function exec_iframe(){  
  15.     window.myframe.fIframe();  
  16.   }  
  17.   </script>  
  18.   
  19.  </head>  
  20.   
  21.  <body>  
  22.   <p>A.html main</p>  
  23.   <p><input type="button" value="exec iframe function" onclick="exec_iframe()"></p>  
  24.   <iframe src="B.html" name="myframe" width="500" height="100"></iframe>  
  25.  </body>  
  26. </html>  

B.html

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  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.     parent.fMain();  
  16.   }  
  17.   </script>  
  18.   
  19.  </head>  
  20.   
  21.  <body>  
  22.   <p>B.html iframe</p>  
  23.   <p><input type="button" value="exec main function" onclick="exec_main()"></p>  
  24.  </body>  
  25. </html>  

点击A.html 的 exec iframe function button,执行成功,弹出iframe function execute success。如下图



点击B.html 的 exec main function button,执行成功,弹出 main function execute success。如下图


2.跨域互相访问


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

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

实际使用时换成 www.domaina.com 与 www.domainb.com 即可。

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 "http://localhost" from accessing a frame with origin "http://127.0.0.1". 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 plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <script type="text/javascript">  
  2. parent.window.myframe.fIframe(); // execute parent myframe fIframe function  
  3. </script>  

这样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 plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <script type="text/javascript">  
  2. parent.parent.fMain(); // execute main function  
  3. </script>  
这样就能实现 A.html 与 B.html 跨域相互调用。

A.html

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  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 = 'http://127.0.0.1/execB.html';  
  20.         exec_obj.style.display = 'none';  
  21.         document.body.appendChild(exec_obj);  
  22.     }else{  
  23.         exec_obj.src = 'http://127.0.0.1/execB.html?' + Math.random();  
  24.     }  
  25.   }  
  26.   </script>  
  27.   
  28.  </head>  
  29.   
  30.  <body>  
  31.   <p>A.html main</p>  
  32.   <p><input type="button" value="exec iframe function" onclick="exec_iframe()"></p>  
  33.   <iframe src="http://127.0.0.1/B.html" name="myframe" width="500" height="100"></iframe>  
  34.  </body>  
  35. </html>  

B.html

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  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 = 'http://localhost/execA.html';  
  19.         exec_obj.style.display = 'none';  
  20.         document.body.appendChild(exec_obj);  
  21.     }else{  
  22.         exec_obj.src = 'http://localhost/execA.html?' + Math.random();  
  23.     }  
  24.   }  
  25.   </script>  
  26.   
  27.  </head>  
  28.   
  29.  <body>  
  30.   <p>B.html iframe</p>  
  31.   <p><input type="button" value="exec main function" onclick="exec_main()"></p>  
  32.  </body>  
  33. </html>  

execA.html

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  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 plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  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>  

执行如下图:


电动汽车数据集:2025年3K+记录 真实电动汽车数据:特斯拉、宝马、日产车型,含2025年电池规格和销售数据 关于数据集 电动汽车数据集 这个合成数据集包含许多品牌和年份的电动汽车和插电式车型的记录,捕捉技术规格、性能、定价、制造来源、销售和安全相关属性。每一行代表由vehicle_ID标识的唯一车辆列表。 关键特性 覆盖范围:全球制造商和车型组合,包括纯电动汽车和插电式混合动力汽车。 范围:电池化学成分、容量、续航里程、充电标准和速度、价格、产地、自水平、排放、安全等级、销售和保修。 时间度:模型度多年(包括传统和即将推出的)。 数据质量说明: 某些行可能缺少某些字段(空白)。 几个分类字段包含不同的、特定于供应商的值(例如,Charging_Type、Battery_Type)。 各列中的单位混合在一起;注意kWh、km、hr、USD、g/km和额定值。 列 列类型描述示例 Vehicle_ID整数每个车辆记录的唯一标识符。1 制造商分类汽车品牌或OEM。特斯拉 型号类别特定型号名称/变体。型号Y 记录关联的年份整数模型。2024 电池_类型分类使用的电池化学/技术。磷酸铁锂 Battery_Capacity_kWh浮充电池标称容量,单位为千瓦时。75.0 Range_km整数表示充满电后的行驶里程(公里)。505 充电类型要充电接口或功能。CCS、NACS、CHAdeMO、DCFC、V2G、V2H、V2L Charge_Time_hr浮动充电的大致时间(小时),上下文因充电方法而异。7.5 价格_USD浮动参考车辆价格(美元).85000.00 颜色类别要外观颜色或饰面。午夜黑 制造国_制造类别车辆制造/组装的国家。美国 Autonomous_Level浮点自动化能力级别(例如0-5),可能包括子级别的小
内容概要:本文详细介绍了IEEE论文《Predefined-Time Sensorless Admittance Tracking Control for Teleoperation Systems With Error Constraint and Personalized Compliant Performance》的复现分析。论文提出了一种预定义时间的无传感器导纳跟踪控制方案,适用于存在模型不确定性的遥操作系统。该方案通过具有可调刚度参数的导纳结构和预定义时间观测器(PTO),结合非奇异预定义时间终端滑模流形和预定义时间性能函数,实现了快速准确的导纳轨迹跟踪,并确保误差约束。文中详细展示了系统参数定义、EMG信号处理、预定义时间观测器、预定义时间控制器、可调刚度导纳模型及仿真系统的代码实现。此外,还增加了动态刚度调节器、改进的广义动量观测器和安全约束模块,以增强系统的鲁棒性和安全性。 适合人群:具备一定自动化控制理论基础和编程能力的研究人员、工程师,尤其是从事机器人遥操作、人机交互等领工作的专业人士。 使用场景及目标:①理解预定义时间控制理论及其在遥操作系统中的应用;②掌握无传感器力观测技术,减少系统复杂度;③学习如何利用肌电信号实现个性化顺应性能调整;④探索如何在保证误差约束的前提下提高系统的响应速度和精度。 阅读建议:本文内容涉及较多的数学推导和技术细节,建议读者先熟悉基本的控制理论和Python编程,重点理解各个模块的功能和相互关系。同时,可以通过运行提供的代码示例,加深对理论概念的理解,并根据自身需求调整参数进行实验验证。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值