이 기사의 예에서는 JS가 iframe이 로드되었는지 확인하는 방법을 설명합니다. 다음과 같이 참고할 수 있도록 모든 사람과 공유하십시오.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title></title> </head> <body> <script type="text/javascript"> var isIE = /msie/i.test(navigator.userAgent) && !window.opera; var iframe = document.createElement("iframe"); iframe.src = "http://www.jb51.net/"; if (isIE) { iframe.onreadystatechange = function(){ if(iframe.readyState == "loaded" || iframe.readyState == "complete"){ alert("loaded"); } }; } else { iframe.onload = function(){ alert("loaded"); }; } document.body.appendChild(iframe); </script> </body> </html>
또는
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title></title> </head> <body> <script type="text/javascript"> var iframe = document.createElement("iframe"); iframe.src = "http://www.jb51.net/"; if (iframe.attachEvent){ iframe.attachEvent("onload", function(){ alert("loaded"); }); } else { iframe.onload = function(){ alert("loaded"); }; } document.body.appendChild(iframe); </script> </body> </html>
이 기사가 JavaScript 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.
JS의 iframe 로딩 여부 판단 방법에 대한 더 많은 글은 PHP 중국어 홈페이지를 참고해주세요!