iFrame 로드 상태 이해
완료 시 작업을 실행하거나 로드 실패를 감지하려면 iFrame의 로드된 상태를 확인하는 것이 필수적입니다. 이 문서에서는 특정 제약 조건을 사용하여 iFrame의 로드된 상태를 확인하는 문제를 다룹니다.
다음 시나리오를 고려해 보세요. ID가 "myIframe"인 iFrame이 제공된 코드를 사용하여 로드됩니다. 그러나 로딩 시간이 다양하여 "iframe.load()" 이벤트 사용에 지장을 줍니다.
해결 방법: 반복 검사
이 문제를 극복하려면 반복 검사 접근 방식을 구현할 수 있습니다. 다음 코드 조각은 이 전략을 예시합니다.
<code class="javascript">function checkIframeLoaded() { // Get a handle to the iframe element var iframe = document.getElementById('i_frame'); var iframeDoc = iframe.contentDocument || iframe.contentWindow.document; // Check if loading is complete if (iframeDoc.readyState == 'complete') { //iframe.contentWindow.alert("Hello"); iframe.contentWindow.onload = function() { alert("I am loaded"); }; // The loading is complete, call the function we want executed once the iframe is loaded afterLoading(); return; } // If we are here, it is not loaded. Set things up so we check the status again in 100 milliseconds window.setTimeout(checkIframeLoaded, 100); } function afterLoading() { alert("I am here"); } window.onload = checkIframeLoaded();</code>
이 코드는 iFrame 문서의 "readyState" 속성을 반복적으로 확인하여 원하는 작업(예: 경고 메시지 표시)을 실행하기 전에 로드가 완료되었는지 확인합니다. iFrame이 로드되면 "afterLoading()" 함수가 호출됩니다.
위 내용은 `iframe.load()`가 실패할 때 iFrame의 로드 상태를 안정적으로 확인하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!