>  기사  >  웹 프론트엔드  >  IE9/10만이 스크립트 요소_javascript 기술의 onload 및 onreadystatechange 이벤트 분석을 모두 지원합니다.

IE9/10만이 스크립트 요소_javascript 기술의 onload 및 onreadystatechange 이벤트 분석을 모두 지원합니다.

WBOY
WBOY원래의
2016-05-16 18:07:311498검색

다음과 같습니다

코드를 복사합니다 코드는 다음과 같습니다.


< html>


IE9/10은 스크립트 요소의 onload 및 onreadystatechange 이벤트를 모두 지원합니다. ;/제목> <br><script src="http://code.jquery.com/jquery.min.js" onload="alert(1)" onreadystatechange="alert(2)"></ 스크립트> <br></head> <br></body> <br><br> <br>결과: </div>IE6/7 /8: 팝업 2 <br>IE9/10: 팝업 2, 1 <br>Firefox/Safari/Chrome/Opera: 팝업 1 <br>테스트 결과 IE9에서 스크립트 온로드 이벤트 지원이 시작된 것으로 나타났습니다. . 우리는 항상 위의 두 가지 이벤트를 사용하여 js 파일이 로드되었는지 확인했습니다. IE에서는 onreadystatechange 이벤트가 사용되며, 로딩 완료 여부를 판단하기 위해 이벤트 핸들러에서 ReadyState 값이 사용된다는 사실은 오래전부터 알고 있었습니다. 다른 브라우저에서는 onload 이벤트를 사용합니다. <br><br><br><div class="codetitle"> <span>코드 복사 <a style="CURSOR: pointer" data="62126" class="copybut" id="copybut62126" onclick="doCopy('code62126')"><u></u> 코드는 다음과 같습니다. </a></span> </div>if(isIE){ <div class="codebody" id="code62126">script .onreadystatechange = function(){ <br>if(this.readyState == 'loaded' || this.readyState == 'complete'){ <br>callback()>} <br>} <br> }else{ <br>script.onload = function(){ <br>callback(); <br>} <br>} <br><br> <br>현재 이 작성 방법에는 문제가 없습니다. 다만, 다음과 같이 작성하면 IE9/10<br> </div> <br><br><div class="codetitle">코드 복사<span><a style="CURSOR: pointer" data="40100" class="copybut" id="copybut40100" onclick="doCopy('code40100')"><u>에서 콜백이 두 번 실행될 수 있습니다. 코드는 다음과 같습니다. </u></a> </span>script.onload = script.onreadystatechange = function(){ </div>if(!this.readyState || this.readyState == "로드됨" || this.readyState == "완료" ){ <div class="codebody" id="code40100"> callback(); <br>} <br>} <br><br> <br>이 작성 ​​방법의 비결은 onload와 onreadystatechage가 모두 동일한 기능을 사용한다는 것입니다. Firefox/Safari/Chrome/Opera , 그리고 ReadyState 속성이 없으므로 !this.readyState 는 이러한 브라우저용입니다. ReadyState는 IE 브라우저용입니다. 로딩이 완료되면 캐싱이 완료될 수 있습니다. 그러니 두 개가 더 작을 수는 없습니다. 그러나 IE9/10은 이미 onload 이벤트를 지원하므로 콜백이 두 번 실행됩니다. <br> </div>관련: <br><br><p> <a href="https://developer.mozilla.org/En/HTML/Element/Script" target="_blank"></a>http://www.w3.org/TR/html401/interact/scripts.html#h-18.2.1 </p> <p> <a href="http://www.w3.org/TR/html401/interact/scripts.html#h-18.2.1" target="_blank"></a>http://www.w3.org/TR/html5/scripting-1.html#script</p> <p> <a href="http://www.w3.org/TR/html5/scripting-1.html#script" target="_blank"></a>https://developer.mozilla.org/En/HTML/Element/Script </p> <p></p></div><div class="nphpQianMsg"><div class="clear"></div></div><div class="nphpQianSheng"><span>성명:</span><div>본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.</div></div></div><div class="nphpSytBox"><span>이전 기사:<a class="dBlack" title="google jQuery 참조 파일, jQuery 참조 주소 수집(jquery 1.2.6 ~ jquery1.5.2)_jquery" href="https://m.php.cn/ko/faq/20175.html">google jQuery 참조 파일, jQuery 참조 주소 수집(jquery 1.2.6 ~ jquery1.5.2)_jquery</a></span><span>다음 기사:<a class="dBlack" title="google jQuery 참조 파일, jQuery 참조 주소 수집(jquery 1.2.6 ~ jquery1.5.2)_jquery" href="https://m.php.cn/ko/faq/20177.html">google jQuery 참조 파일, jQuery 참조 주소 수집(jquery 1.2.6 ~ jquery1.5.2)_jquery</a></span></div><div class="nphpSytBox2"><div class="nphpZbktTitle"><h2>관련 기사</h2><em><a href="https://m.php.cn/ko/article.html" class="bBlack"><i>더보기</i><b></b></a></em><div class="clear"></div></div><ul class="nphpXgwzList"><li><b></b><a href="https://m.php.cn/ko/faq/1609.html" title="Bootstrap 목록 그룹 구성 요소에 대한 심층 분석" class="aBlack">Bootstrap 목록 그룹 구성 요소에 대한 심층 분석</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ko/faq/1640.html" title="JavaScript 함수 커링에 대한 자세한 설명" class="aBlack">JavaScript 함수 커링에 대한 자세한 설명</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ko/faq/1949.html" title="JS 비밀번호 생성 및 강도 감지의 전체 예(데모 소스 코드 다운로드 포함)" class="aBlack">JS 비밀번호 생성 및 강도 감지의 전체 예(데모 소스 코드 다운로드 포함)</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ko/faq/2248.html" title="Angularjs는 WeChat UI(weui)를 통합합니다." class="aBlack">Angularjs는 WeChat UI(weui)를 통합합니다.</a><div class="clear"></div></li><li><b></b><a href="https://m.php.cn/ko/faq/2351.html" title="JavaScript를 사용하여 중국어 번체와 중국어 간체 간을 빠르게 전환하는 방법과 중국어 간체와 중국어 번체 간 전환을 지원하는 웹사이트의 요령_javascript 기술" class="aBlack">JavaScript를 사용하여 중국어 번체와 중국어 간체 간을 빠르게 전환하는 방법과 중국어 간체와 중국어 번체 간 전환을 지원하는 웹사이트의 요령_javascript 기술</a><div class="clear"></div></li></ul></div></div><footer><div class="footer"><div class="footertop"><img src="/static/imghwm/logo.png" alt=""><p>공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!</p></div><div class="footermid"><a href="https://m.php.cn/ko/about/us.html">회사 소개</a><a href="https://m.php.cn/ko/about/disclaimer.html">부인 성명</a><a href="https://m.php.cn/ko/update/article_0_1.html">Sitemap</a></div><div class="footerbottom"><p> © php.cn All rights reserved </p></div></div></footer><script>isLogin = 0;</script><script type="text/javascript" src="/static/layui/layui.js"></script><script type="text/javascript" src="/static/js/global.js?4.9.47"></script></div><script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script><link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css' type='text/css' media='all'/><script type='text/javascript' src='/static/js/viewer.min.js?1'></script><script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script><script>jQuery.fn.wait = function (func, times, interval) { var _times = times || -1, //100次 _interval = interval || 20, //20毫秒每次 _self = this, _selector = this.selector, //选择器 _iIntervalID; //定时器id if( this.length ){ //如果已经获取到了,就直接执行函数 func && func.call(this); } else { _iIntervalID = setInterval(function() { if(!_times) { //是0就退出 clearInterval(_iIntervalID); } _times <= 0 || _times--; //如果是正数就 -- _self = $(_selector); //再次选择 if( _self.length ) { //判断是否取到 func && func.call(_self); clearInterval(_iIntervalID); } }, _interval); } return this; } $("table.syntaxhighlighter").wait(function() { $('table.syntaxhighlighter').append("<p class='cnblogs_code_footer'><span class='cnblogs_code_footer_icon'></span></p>"); }); $(document).on("click", ".cnblogs_code_footer",function(){ $(this).parents('table.syntaxhighlighter').css('display','inline-table');$(this).hide(); }); $('.nphpQianCont').viewer({navbar:true,title:false,toolbar:false,movable:false,viewed:function(){$('img').click(function(){$('.viewer-close').trigger('click');});}}); </script></body></html>