>웹 프론트엔드 >JS 튜토리얼 >상위 페이지의 iFrame 내에서 JavaScript 함수를 호출하려면 어떻게 해야 합니까?

상위 페이지의 iFrame 내에서 JavaScript 함수를 호출하려면 어떻게 해야 합니까?

DDD
DDD원래의
2024-12-11 17:40:22372검색

How Can I Call a JavaScript Function Inside an iFrame from its Parent Page?

상위 페이지에서 iFrame 내의 JavaScript 함수에 액세스

상위 페이지에서 iframe 내의 JavaScript 코드를 호출하려면 먼저 iframe의 'targetFrame'과 같은 ID 및 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 내에서 JavaScript 함수를 호출하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.