首页 > web前端 > js教程 > 如何从 iFrame 的父页面调用 iFrame 内的 JavaScript 函数?

如何从 iFrame 的父页面调用 iFrame 内的 JavaScript 函数?

DDD
发布: 2024-12-11 17:40:22
原创
284 人浏览过

How Can I Call a JavaScript Function Inside an iFrame from its Parent Page?

从父页面访问 iFrame 内的 JavaScript 函数

要从父页面调用 iframe 内的 JavaScript 代码,首先要识别 iframe 的ID,例如“targetFrame”,以及在 iframe 内调用的函数,例如"targetFunction()."

访问 iframe:

  • 使用 document.getElementById: document.getElementById('targetFrame').contentWindow.targetFunction();
  • 使用 window.frames: window.frames[0].frameElement.contentWindow.targetFunction(); (注意:此方法可能不适用于较新版本的 Chrome 和 Firefox。)

示例:

// Target the iframe with ID "targetFrame"
const iframe = document.getElementById('targetFrame');

// Get the window object of the iframe
const iframeWindow = iframe.contentWindow;

// Invoke the "targetFunction()" function within the iframe
iframeWindow.targetFunction();
登录后复制

以上是如何从 iFrame 的父页面调用 iFrame 内的 JavaScript 函数?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板