jquery ready 함수 소스 코드 연구
ready: function(fn) {
//
bindReady();
// DOM
if ( jQuery.isReady )
//
fn.call( document, jQuery );
//
else
//
jQuery.readyList.push( function() { return fn.call(this, jQuery); } );
return this;
}
jquery 가 서로 다른 브 라 우 저 dom 로 딩 이 완 료 된 알림 bidReady()편지 수:
var readyBound = false;
function bindReady(){
if ( readyBound ) return;
readyBound = true;
// Mozilla,opera,webkitnightlies DOMContentLoaded
if ( document.addEventListener && !jQuery.browser.opera)
//
document.addEventListener( "DOMContentLoaded", jQuery.ready, false );
// ie frame
//
if ( jQuery.browser.msie && window == top ) (function(){
if (jQuery.isReady) return;
try {
// , (1)
document.documentElement.doScroll("left");
} catch( error ) {
//// , (2)
setTimeout( arguments.callee, 0 );
return;
}
// and execute any waiting functions
jQuery.ready();
})();
if ( jQuery.browser.opera )
document.addEventListener( "DOMContentLoaded", function () {
if (jQuery.isReady) return;
for (var i = 0; i < document.styleSheets.length; i++) // (3)
if (document.styleSheets[i].disabled) {
setTimeout( arguments.callee, 0 );
return;
}
// and execute any waiting functions
jQuery.ready();
}, false);
if ( jQuery.browser.safari ) {
var numStyles;
(function(){
if (jQuery.isReady) return;
if ( document.readyState != "loaded" && document.readyState != "complete" ) { // (4)
setTimeout( arguments.callee, 0 );
return;
}
if ( numStyles === undefined )
numStyles = jQuery("style, link[rel=stylesheet]").length;
if ( document.styleSheets.length != numStyles ) { // (5)
setTimeout( arguments.callee, 0 );
return;
}
// and execute any waiting functions
jQuery.ready();
})();
}
// A fallback to window.onload, that will always work
jQuery.event.add( window, "load", jQuery.ready ); // (6)
}
}
(1):이것 은 주로 ie 아래 의 dom ready 를 측정 하 는 것 입 니 다.원 리 는 여기에 있다.http://javascript.nwbox.com/IEContentLoaded/i 아래 에 있 습 니 다.dom 이 해석 을 완료 하지 않 았 을 때 document 의 document.document Element.do Scroll("left")을 호출 하면 dom 에 ready 가 있 는 지 없 는 지 알 수 있 습 니 다.(2)setTimeout(arguments.callee,0)은 0 초 지연 호출 을 의미 합 니 다.실제 적 으로 dom 이 바로 호출 되 지 않 습 니 다.가능 한 한 빨리 호출 할 것 입 니 다.브 라 우 저 에 게 현재 걸 려 있 는 모든 이벤트 의 핸들 을 실행 하고 문서 의 현재 상 태 를 업데이트 한 후에 호출 할 것 을 알려 줍 니 다.Arguments.callee 는 바로 외부 익명 함수 입 니 다.매개 변수의 호출 자(3):이 곳 은 이상 하 게 생각 할 수도 있 습 니 다.왜 mozilla 에서 함께 처리 하지 않 습 니까?그 이 유 는 opera 의 DOMContentLoaded 사건 이 발생 한 후 css 스타일 이 완전히 사용 되 지 않 았 기 때문에 특수 처리 해 야 합 니 다.모든 css 의 tag 가 enable 인지 아 닌 지 를 판단 하 는 것 입 니 다.(4),(5):safari 에서 document.ready State 의 상태 가 loaded 또는 complete 일 때 css 파일 도입 이 해석 되 었 는 지 확인 되 지 않 았 기 때문에 css 파일 의 수 를 판단 해 야 합 니 다(6).마지막 으로,위의 hack 가 지원 되 지 않 는 다 면...가장 안전 한 load 이벤트 로 초기 화 코드 를 실행 할 수 있 도록 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
jQuery 전후 예이 기사에서는 jquery after() 및 before() 메소드의 예를 볼 것입니다. before() 메서드는 선택한 요소 앞에 지정된 콘텐츠를 삽입합니다. after() 메서드는 선택한 요소 뒤에 지정된 콘텐츠...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.