从父文档/窗口调用IFrame Javascript函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从父文档/窗口调用IFrame Javascript函数相关的知识,希望对你有一定的参考价值。

This snippet lets you call a javascript function declared within an IFrame from the parent element of the IFrame
  1. var iframe = document.getElementById("myframe");
  2. if (iframe) {
  3. var iframeContent = (iframe.contentWindow || iframe.contentDocument);
  4.  
  5. iframeContent.targetFunction();
  6. }

以上是关于从父文档/窗口调用IFrame Javascript函数的主要内容,如果未能解决你的问题,请参考以下文章

从父窗口访问 iframe 中的 DOM 附加函数

node webkit- 从父窗口捕获 iframe 鼠标事件

javascript, iframe, security - 尝试从父窗口访问 js 函数时权限被拒绝

如何从父文档中捕获 iframe 内部的刷新?

访问 <iframe> 元素的窗口和文档的最简洁的跨浏览器方法是啥?

如何从父页面调用 iframe 中的脚本?