一页中有太多 jquery 文档,没有冲突,无法正常工作
我可能在这里偏离基地,但我有这个网站 http://ephemurl.com/4w/5ty我认为精美的 jScrollpane 插件无法工作的原因是该页面上有过多的 jQuery,我希望这是有道理的。我只需要帮助尝试让所有这些都能很好地协同工作..
有什么想法吗?他们都是需要的
http://code.jquery.com/jquery-latest.min.js
http://ephemurl.com/4w/5tz
http://ephemurl.com/4w/5u1
http://ephemurl.com/4w/5u2
http://ephemurl.com/4w/5u3
http://ephemurl.com/4w/5u4
I could be way off base here but I have this site http://ephemurl.com/4w/5ty and I think the reason the fancy jScrollpane plugin isn't working is due to an excessive amount of jQuery on that page, I hope this makes sense. I just need help trying to get these all to work nicely together..
Any ideas? and they are all needed
http://code.jquery.com/jquery-latest.min.js
http://ephemurl.com/4w/5tz
http://ephemurl.com/4w/5u1
http://ephemurl.com/4w/5u2
http://ephemurl.com/4w/5u3
http://ephemurl.com/4w/5u4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.noConflict()
告诉 jQuery 放弃其他库的$
变量。不过,您的about-tabs.js
正在使用$
,所以这肯定会引发错误。解决此问题的最简单方法是更改
为
这样,您仍然可以在准备好的函数中使用
$
(因此您不必更改其他任何内容。.noConflict()
tells your jQuery to let go of the$
variable for other libraries. Yourabout-tabs.js
is using$
though, so that's definitely going to throw an error.The easiest way to fix this is to change
to
This way, you can still use
$
inside your ready function (so you don't have to change anything else.在 about-tabs.js 中,尝试将 $(document).ready(function () { 更改为
jQuery(document).ready(function ($) {
)。该行目前正在导致错误,因为您没有使用冲突,没有冲突并不是为了防止 jQuery 插件相互冲突,而是为了防止 jQuery 与其他框架发生冲突。
In about-tabs.js, try changing
$(document).ready(function () {
tojQuery(document).ready(function ($) {
. That line is causing an error at the moment because you have used no conflict.Btw, no conflict isn't to prevent jQuery plugins conflicting with each other. It's to prevent jQuery conflicting with other frameworks.