我正在编写一个需要依赖jQuery ++的jQuery插件,但我不确定如何从我的插件中引用它。我该怎么做?
答案 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);
复制和修改代码