首頁 >web前端 >js教程 >如何從 iFrame 的父頁呼叫 iFrame 內的 JavaScript 函數?

如何從 iFrame 的父頁呼叫 iFrame 內的 JavaScript 函數?

DDD
DDD原創
2024-12-11 17:40:22285瀏覽

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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn