JQuery 프레임워크 원리 시뮬레이션 실현

606 단어 jquery
(function(){

/* window['hyl'] = {}  

 function $(){

 	alert("this is my message");

 }

 window['hyl']['$'] = $; */ 





var $ = jQuery = window.jQuery = function(){

    return new jQuery.fn.init();

}

jQuery.fn = jQuery.prototype = {

    init:function(){

    	alert("init");

        return this;

    },

    size:function(){

        alert("size11111");

    },

    jquery:"1.0.0"

}

jQuery.fn.init.prototype = jQuery.fn;

jQuery().size();



})()


부분 코드 호출
alert($().jquery);

좋은 웹페이지 즐겨찾기