假设我在网站上有一个包含如下代码的主 js 文件:
$.fn.extend({
break: function(){
//code here
},
cut: function(){
//code here
},
// ...many other methods
});
我像这样使用它:
$('#mydiv').break().animate() ...
现在,如果我添加一个也具有“break”方法的外部 jquery 插件文件,如何防止我的 $.fn 方法与其他人的方法之间发生冲突?