從父頁面訪問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中文網其他相關文章!