jquery 프레임워크 연구

1844 단어 jquery
부호를 붙이다
var $ = jQuery = function() {

    return new jQuery.fn.init();

};





jQuery.fn = jQuery.prototype = {

    init: function(args) {

        this.length = 0;  //  length

        this.test = function() { //  test  

            return this.length;

        };

        delete this.jquery;  //  jquery  

         

        return this;  //  jQuery       

    },

    jquery: '1.3.2',

    length: 1,

    size: function() {

        return this.length;

    }

};

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

좋은 웹페이지 즐겨찾기