jQuery:如何扩展扩展?

时间:2011-08-25 04:49:47

标签: jquery jquery-plugins jquery-widgets

我已经看到jQuery的插件可以通过这种方式扩展:

$.ui.plugin.add('draggable', 'zIndex', {
    start: function(event, ui) { //... }
})

我想知道是否可以延长扩展名?所以,比如说,我想在draggable插件的zIndex扩展中改变一些东西(不是所有东西),也就是说,在开始回调函数的最开始就放置一些我自己的代码。我该怎么办呢?如何访问该功能来代理它?

1 个答案:

答案 0 :(得分:1)

沿着这些方向:

(function ($) {
    function proxyPlugin(plugin, callback, option, func) {
        $.each($.ui[plugin].prototype.plugins[callback], function (k, v) {
            if (v[0] == option) {
                var fn = v[1];

                v[1] = function () {
                    func.apply(this, arguments);

                    fn.apply(this, arguments);
                }
            }
        });
    }

    proxyPlugin('draggable', 'start', 'zIndex', function (e, ui) {
        // we are in our custom function that will be triggered before the original one.
        // our custom function receives all the arguments the original one has.
        // for example, let's add a property by the name of foo to the ui object. 
        ui.foo = true;
    });
})(jQuery);