防止jquery原型/插件方法之间的冲突

发布于 2024-08-16 04:01:37 字数 338 浏览 3 评论 0原文

假设我的网站上有一个主 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

狠疯拽 2024-08-23 04:01:37

你不能。

这就是为什么许多插件(例如 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文