jQuery 和其他库的包含顺序正确吗?
我有一个使用 MooTools 和 jQuery 的 WordPress 主题。我使用 jQuery noConflict
来避免与其他 JS 库发生冲突;这对我没有帮助。
有人可以帮助我按照正确的顺序在我的 Wordpress 主题中包含 JS 库吗?
提前致谢。
I have a Wordpress theme that uses MooTools and jQuery. I use jQuery noConflict
to avoid conflicts with other JS libraries; this didn't help me.
Can someone help me with the right order of including JS libraries on my Wordpress theme?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要做的就是在 jquery 代码之前添加此内容:
并将所有 JQuery
$
替换为jQuery
。例如 :What you need to do is add this before your jquery code :
and replace all JQuery
$
byjQuery
. For example :