var iframe = document.createElement("iframe");
iframe.src = "http://www.jb51.net";
if (!/*@cc_on!@*/0) { //IE가 아닌 경우
iframe.onload = function( ){
alert("이제 로컬 iframe이 로드되었습니다.");
}
} else {
iframe.onreadystatechange = function(){
if (iframe.readyState == " 완료"){
alert("이제 로컬 iframe이 로드되었습니다.")
}
}
document.body.appendChild(iframe);
최근 Christopher는
Nicholas C. Zakas 기사 "Iframes, onload 및 document.domain" 에 댓글을 남겼습니다. 새로운 판단 방법(완벽):
var iframe = document.createElement("iframe");
iframe.src = "http://www.jb51.net";
if (iframe.attachEvent){
iframe.attachEvent(" onload", function(){
alert("로컬 iframe이 이제 로드되었습니다.");
});
} else {
iframe.onload = function(){
alert( "이제 로컬 iframe이 로드되었습니다.");
}
}
document.body.appendChild(iframe);
클릭 추가 설명:
IE는 iframe의 온로드 이벤트
를 지원하지만 표시되지 않으며 AttachEvent를 통해 등록해야 합니다. readystatechange 이벤트는 로드 이벤트에 비해 잠재적인 문제가 있기 때문에 두 번째 방법이 첫 번째 방법보다 더 완벽합니다.