상위 페이지에서 iFrame 내의 JavaScript 함수에 액세스
상위 페이지에서 iframe 내의 JavaScript 코드를 호출하려면 먼저 iframe의 'targetFrame'과 같은 ID 및 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!