WordPress 插件中的 Jquery 冲突
我有个人博客,它使用各种 WordPress 插件和主题。我正在为我的博客使用 rocktheme-Iridium 主题,并且我还安装了 Wp-Faq-Plugin(http://tribulant.com/plugins/view/8/wordpress-faq-plugin) 在我的网站中。激活时出现的问题Wp-Faq-Plugin 铱星管理设置选项卡由于某些 jquery 冲突而被连接,如果停用该 wp-faq,它对我来说运行良好,请提供任何 jquery 冲突程序来克服上述问题。
$ 不是 wp-content/themes/rt_iridium_wp/admin/js/mootools 中的函数.js?ver=3.1.2 线路:74
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您在 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/