防止jquery原型/插件方法之间的冲突
假设我的网站上有一个主 js 文件,其中包含如下代码:
$.fn.extend({
break: function(){
//code here
},
cut: function(){
//code here
},
// ...many other methods
});
并且我像这样使用它:
$('#mydiv').break().animate() ...
现在,如果我添加一个也具有“break”方法的外部 jquery 插件文件,我如何防止我的 $ 之间的冲突.fn 方法和别人的?
Suppose i have a main js file on the website that contains some code as follows:
$.fn.extend({
break: function(){
//code here
},
cut: function(){
//code here
},
// ...many other methods
});
and i use it like so:
$('#mydiv').break().animate() ...
Now if i add an external jquery plugin file that also has a 'break' method, how do i prevent conflict between my $.fn methods and someone else's?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。
这就是为什么许多插件(例如 jQuery UI)只向原型添加一个方法,该方法采用操作名称作为参数。
You can't.
This is why many plugins, such as jQuery UI, only add a single method to the prototype which takes an action name as a parameter.