0

jQuery++ に依存する必要がある jQuery プラグインを作成していますが、プラグインからそれを参照する方法がわかりません。どうすればいいですか?

4

2 に答える 2

1

jQuery.getScript()を使用して試すことができます

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

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

});  
于 2013-05-08T09:54:20.240 に答える
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);

jQuery プラグイン内の他のプラグインの呼び出しからコピーおよび変更されたコード

于 2013-05-08T09:53:54.923 に答える