ホームページ >ウェブフロントエンド >jsチュートリアル >iFrame 内の JavaScript 関数を親ページから呼び出すにはどうすればよいですか?
親ページから 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 内の JavaScript 関数を親ページから呼び出すにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。