4

我创建了一个插件来使用 DIV 将 HTML 选择框转换为自定义下拉菜单。

一切都很好,但我想让它变得更好一点。看我的 jsFiddle

在插件的末尾,我有 2 个方法,slideDownOptions 和 slideUpOptions,我想让这些在插件之外可用,以便其他事件可以触发动作。

我有点困惑如何做到这一点,更具体地说,如何从插件内部和插件外部调用方法。

任何帮助总是很感激

4

2 回答 2

13

考虑使用面向对象的代码重构你的插件。有了这个,你可以为你的插件制作 API,比如 jQuery UI API。因此,您可以访问插件方法,例如:

$('select').customSelect(); // apply plugin to elements
$('select').customSelect('resetOpacity'); // call method resetOpacity();
$('select').customSelect('setOpacity', 0.5); // call method with arguments

创建此类插件的基本模板如下所示:

// plugin example
(function($){
    // custom select class
    function CustomSelect(item, options) {
        this.options = $.extend({
            foo: 'bar'
        }, options);
        this.item = $(item);
        this.init();
    }
    CustomSelect.prototype = {
        init: function() {
            this.item.css({opacity:0.5});
        },
        resetOpacity: function() {
            this.setOpacity('');
        },
        setOpacity: function(opacity) {
            this.item.css({opacity:opacity});
        }
    }

    // jQuery plugin interface
    $.fn.customSelect = function(opt) {
        // slice arguments to leave only arguments after function name
        var args = Array.prototype.slice.call(arguments, 1);
        return this.each(function() {
            var item = $(this), instance = item.data('CustomSelect');
            if(!instance) {
                // create plugin instance and save it in data
                item.data('CustomSelect', new CustomSelect(this, opt));
            } else {
                // if instance already created call method
                if(typeof opt === 'string') {
                    instance[opt].apply(instance, args);
                }
            }
        });
    }

}(jQuery));

// plugin testing
$('select').customSelect();

在这里工作 JS 小提琴:http: //jsfiddle.net/XsZ3Z/

于 2012-10-14T08:14:33.147 回答
4

您必须重构代码才能使其正常工作。考虑使用jQuery 样板

;(function ( $, window, undefined ) {

  var pluginName = 'convertSelect',
  document = window.document,
  defaults = {
    propertyName: "value"
  };

  function Plugin( element, options ) {
    this.element = element;
    this.options = $.extend( {}, defaults, options) ;

    this._defaults = defaults;
    this._name = pluginName;

    this.init();
  }

  Plugin.prototype = {

    // Private methods start with underscore
    _generateMarkup: function() {

      // you can access 'this' which refers to the constructor
      // so you have access the all the properties an methods
      // of the prototype, for example:
      var o = this.options

    },

    // Public methods
    slideDownOptions: function() { ... }

  }

  $.fn[ pluginName ] = function ( options ) {
    return this.each(function () {
      if (!$.data( this, 'plugin_' + pluginName ) ) {
        $.data( this, 'plugin_' + pluginName, new Plugin( this, options ) );
      }
    });
  };

}(jQuery, window));

然后你可以像这样调用公共方法:

var $select = $('select').convertSelect().data('plugin_convertSelect');
$select.slideDownOptions();

我的一个项目也有类似的问题,我最近不得不重构整个事情,因为我用太多的方法污染了 jQuery 命名空间。jQuery Boilerplate 工作得很好,它基于官方的 jQuery 指南,但有一些曲折。如果您想查看此插件模式的实际效果,请查看https://github.com/elclanrs/jq-idealforms/tree/master/js/src

于 2012-10-14T08:21:59.460 回答