jquery 和悬停意图 - 禁用悬停意图插件的最佳方法

发布于 2024-11-19 05:25:42 字数 183 浏览 2 评论 0原文

我必须禁用hoverintent插件的使用,但是我无法控制页面上的现有源代码。所以目前我只是像这样扔一块砖:

$("ul#accordion li").hoverIntent( null )

有没有比传递 null 而不是“真实”配置元素更好的方法来做到这一点?

谢谢

I have to disable the use of hoverintent plugin, however I have no control over existing source code on the page. So at the moment I'm just throwing in a brick like so:

$("ul#accordion li").hoverIntent( null )

Is there a better way to do this than passing a null instead of 'real' config elements?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

征﹌骨岁月お 2024-11-26 05:25:42

覆盖插件怎么样?像这样的东西:

$.fn.hoverIntent = function(){ return $(this); };

How about overriding the plugin? Something like:

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