jquery 코드 학습 01 - 단순 기능 코드 구조

684 단어 jquery
(function(window){
	//      
	var jQuery = (function(){
		
		//    
		var jQuery = function(selector, context){
			return jQuery.fn.init(selector);
		};
		
		//    
		jQuery.fn = jQuery.prototype = {
			constructor: jQuery,
			init: function( selector, context, rootjQuery ) {
				//      
				return document.getElementById(selector);
			}
			
		};
				
		//return   jQuery		
		return jQuery;
	})();
	
	//  window   
	window.jQuery = window.$ = jQuery;
	
})(window);

//  
console.log($('aa'));

좋은 웹페이지 즐겨찾기