如何在另一个中使用一个jQuery插件?

时间:2013-05-08 09:45:12

标签: jquery jquery-plugins

我正在编写一个需要依赖jQuery ++的jQuery插件,但我不确定如何从我的插件中引用它。我该怎么做?

2 个答案:

答案 0 :(得分:1)

您可以尝试使用jQuery.getScript()

$.getScript("other_scripts.js", function(){

   // You can use anything you defined in other_scripts.js here

});  

答案 1 :(得分:0)

试试这个:

(function($){
    $.fn.funct = function() {
        console.log('funct is running...');
    } 
    $.fn.foo = function() { 
        return this.each(function(){
            console.log('plugin is running...');
            $(this).funct();
        });
    };
})(jQuery);

Calling other plugins within a jQuery plugin

复制和修改代码