사용된 방법은 매우 유사합니다.
var iframe = document.createElement ("iframe");
iframe.src = "http://www.jb51.net"
if (!/*@cc_on!@*/0) { / /if not IE
iframe.onload = function(){
alert("이제 로컬 iframe이 로드되었습니다.")
}
} else {
iframe.onreadystatechange = function( ){
if (iframe.readyState == "완료"){
alert("이제 로컬 iframe이 로드되었습니다.")
}
}
}
문서. body.appendChild( iframe);
최근 Christopher는
Nicholas C. Zakas 기사
"Iframes, onload 및 document.domain의 댓글에 새로운 댓글을 올렸습니다. " 판정 방법(완벽):
var iframe = document.createElement("iframe");
iframe.src = "http://sc.jb51.net";
if (iframe.attachEvent){
iframe.attachEvent(" onload", function() {
alert("로컬 iframe이 이제 로드되었습니다.");
});
} else {
iframe.onload = function(){
alert( "로컬 iframe이 이제 로드되었습니다.");
}
document.body.appendChild(iframe)
몇 가지 추가 참고사항:
IE는 iframe의 onload 이벤트를 지원하지만 보이지 않으며, attachmentEvent를 통해 등록해야 합니다.
readystatechange 이벤트는 로드 이벤트에 비해 잠재적인 문제가 있기 때문에 두 번째 방법이 첫 번째 방법보다 더 완벽합니다.