一页中有太多 jquery 文档,没有冲突,无法正常工作

发布于 2024-10-27 12:47:17 字数 776 浏览 0 评论 0原文

我可能在这里偏离基地,但我有这个网站 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 技术交流群。

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

发布评论

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

评论(2

暗喜 2024-11-03 12:47:17

.noConflict() 告诉 jQuery 放弃其他库的 $ 变量。不过,您的 about-tabs.js 正在使用 $ ,所以这肯定会引发错误。

解决此问题的最简单方法是更改

$(document).ready(function(){

​​为

jQuery(function($){

这样,您仍然可以在准备好的函数中使用 $ (因此您不必更改其他任何内容。

.noConflict() tells your jQuery to let go of the $ variable for other libraries. Your about-tabs.js is using $ though, so that's definitely going to throw an error.

The easiest way to fix this is to change

$(document).ready(function(){

to

jQuery(function($){

This way, you can still use $ inside your ready function (so you don't have to change anything else.

三寸金莲 2024-11-03 12:47:17

在 about-tabs.js 中,尝试将 $(document).ready(function () { 更改为 jQuery(document).ready(function ($) {)。该行目前正在导致错误,因为您没有使用冲突

,没有冲突并不是为了防止 jQuery 插件相互冲突,而是为了防止 jQuery 与其他框架发生冲突。

In about-tabs.js, try changing $(document).ready(function () { to jQuery(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.

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