WordPress 插件中的 Jquery 冲突

发布于 2024-11-10 07:28:52 字数 731 浏览 0 评论 0 原文

我有个人博客,它使用各种 WordPress 插件和主题。我正在为我的博客使用 rocktheme-Iridium 主题,并且我还安装了 Wp-Faq-Plugin(http://tribulant.com/plugins/view/8/wordpress-faq-plugin) 在我的网站中。激活时出现的问题Wp-Faq-Plugin 铱星管理设置选项卡由于某些 jquery 冲突而被连接,如果停用该 wp-faq,它对我来说运行良好,请提供任何 jquery 冲突程序来克服上述问题。

常见问题解答未激活

正确铱星设置

FAQ ACTIVATED

由于 JQUERY 冲突,铱星设置不正确

$ 不是 wp-content/themes/rt_iridium_wp/admin/js/mootools 中的函数.js?ver=3.1.2 线路:74

i have personal blogg which uses various wordpress plugins and themes. i am using the rocktheme-Iridium Theme for my blugg and also i have installed the Wp-Faq-Plugin(http://tribulant.com/plugins/view/8/wordpress-faq-plugin) in my website.The problem when i activate the Wp-Faq-Plugin the Iridium admin settings tab get wired due to some jquery conflict, if deactivate that wp-faq that it was working well for me so kindly provide any jquery conflict procedure to overcome the above issues.

FAQ NOT aCTIVATED

CORRECT IRIDIUM SETTINGS

FAQ ACTIVATED

IN CORRECT IRIDIUM SETTINGS DUE TO JQUERY CONFLICT

$ is not a function in the wp-content/themes/rt_iridium_wp/admin/js/mootools.js?ver=3.1.2
Line: 74

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

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

发布评论

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

评论(1

少女的英雄梦 2024-11-17 07:28:52

看来您在 jQuery 和 MooTools 之间存在冲突。这两个 JavaScript 库都使用 $ 符号,这就是您在 mootools.js 中收到错误的原因。您可以使用以下 jQuery 代码行消除冲突(尽管必须在 MooTools 代码之前调用它):

$.noConflict();

您可以在此处阅读有关此问题的更多信息: http://api.jquery.com/jQuery.noConflict/< /a>

It appears you're having a conflict between jQuery and MooTools. Both JavaScript libraries use the $ symbol, which is why you're getting an error in mootools.js. You can remove the conflict with the following line of jQuery code (though it must be called before your MooTools code):

$.noConflict();

You can read more about the issue here: http://api.jquery.com/jQuery.noConflict/

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