从父页面访问 iFrame 内的 JavaScript 函数
要从父页面调用 iframe 内的 JavaScript 代码,首先要识别 iframe 的ID,例如“targetFrame”,以及在 iframe 内调用的函数,例如"targetFunction()."
访问 iframe:
示例:
// 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中文网其他相关文章!