任何熟悉模式的人:
喜欢
(function($){
if (jQuery.fn.pluginName)
......
}
})(jQuery);
10x,BR
答案 0 :(得分:1)
$ .fn命名空间填充了函数。如果插件存在,您可以使用此
if ($.fn.myPlugin instanceof Function) {
// the plugin exists
} else {
// the plugin does not exist
}
如果这还不够,你也可以使用
进行检查if (typeof $.fn.myPlugin === 'function') {
// The plugin exists
} else {
// The plugin does not exist
}