jq 插件开发模板

(function ($) {
    var PageRuler = function(cfg) {
        this.pageRuler = $(cfg.rulerId);
    };

    $.extend(PageRuler.prototype, {
        _init: function() {

        },
        _bindEvent: function() {

        },
        otherFunc: function() {

        }
    });

    win.PageRuler = PageRuler;
})(jQuery);

// 使用

window.pageRuler = new PageRuler({
     rulerId: ""
});

你可能感兴趣的:(jq 插件开发模板)