插件回调的多种方法

时间:2016-04-12 12:24:39

标签: jquery jquery-callback

有没有办法在插件回调中添加多个方法?例如假设有这个插件允许通过" afterInit"来调用方法。回调

$("div.block-20").myPlugin({
    afterInit : method1
});

现在我想运行另一个方法(method2)。无论如何没有调整插件或合并2个方法(method1,method2)?

1 个答案:

答案 0 :(得分:1)

您可以使用匿名函数作为回调函数:

$("div.block-20").myPlugin({
    afterInit : function() {
        method1();
        method2();
        // do something other
    }
});