1

编写 jQuery 插件以拥有所有 jQuery 函数、方法和可用属性的最短和最快的方法是什么,但要避免这种在大多数情况下存储在jquery.*-plugin.js文件中的模式:

(function($){
    $.yourPluginName = function(el, radius, options){
        // To avoid scope issues, use 'base' instead of 'this'
        // to reference this class from internal events and functions.
        var base = this;

        // Access to jQuery and DOM versions of element
        base.$el = $(el);
        base.el = el;

        // Add a reverse reference to the DOM object
        base.$el.data("yourPluginName", base);

        base.init = function(){
            if( typeof( radius ) === "undefined" || radius === null ) radius = "20px";

            base.radius = radius;

            base.options = $.extend({},$.yourPluginName.defaultOptions, options);

            // Put your initialization code here
        };

        // Sample Function, Uncomment to use
        // base.functionName = function(paramaters){
        // 
        // };

        // Run initializer
        base.init();
    };

    $.yourPluginName.defaultOptions = {
        radius: "20px"
    };

    $.fn.yourPluginName = function(radius, options){
        return this.each(function(){
            (new $.yourPluginName(this, radius, options));

           // HAVE YOUR PLUGIN DO STUFF HERE


           // END DOING STUFF

        });
    };

})(jQuery);

我正在寻找一个快速的 jQuery 插件模式/模板,我可以在我的main.js文件中使用它来执行我所有的 JavaScript 逻辑和 jQuery 的事情。

我想要做的是避免jquery.*-plugin.js为我的一些自定义插件使用文件,这些插件将仅用于我网站的某些部分和部分。

4

1 回答 1

1

这真的取决于您需要什么功能,但 jQuery 插件只是一个方法jQuery.prototype(别名为jQuery.fn),因此您可以这样做:

$.fn.myPlugin = function () {
    // `this` refers to the jQuery instance. Put your logic in here.
};

然后你可以这样称呼它:

$(".some-selector").myPlugin();

这是一个工作示例

于 2013-03-05T10:32:38.930 回答