“$.support 未定义”

发布于 2024-09-30 11:20:55 字数 149 浏览 3 评论 0原文

尝试将 fancybox 与 jQuery 一起使用时出现“$.support is undefined”错误。以前从未见过这个。

可能是由于 jQuery 冲突造成的?有什么想法吗?

jQuery 肯定正在运行,因为页面上使用它的其他元素工作正常。

"$.support is undefined" error when trying to use fancybox with jQuery. Never seen this before.

Could it be due to conflicting jQuerys? Any ideas?

jQuery is definitely being run, as the other elements on the page that utilize it work fine.

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

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

发布评论

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

评论(4

总攻大人 2024-10-07 11:20:55

您是否确保 jquery 库位于 jquery fancy box 库之上?

例如,参见这个:

这是错误的

<script src="../../FancyBox/Fancybox.js" type="text/javascript"></script>

<script src="../../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>

,这是正确的方法

<script src="../../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>

<script src="../.. /FancyBox/Fancybox.js" type="text/javascript"></script>

did you make sure that the jquery library is on top of the jquery fancy box library?

see for example this one:

this is wrong

<script src="../../FancyBox/Fancybox.js" type="text/javascript"></script>

<script src="../../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>

this is the right way

<script src="../../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>

<script src="../.. /FancyBox/Fancybox.js" type="text/javascript"></script>
揽清风入怀 2024-10-07 11:20:55

您是否在 jQuery 之前包含 fancybox JavaScript 文件?不。

Are you including the fancybox JavaScript file before jQuery? Don't.

江挽川 2024-10-07 11:20:55

您使用什么版本的 jQuery?
$.support 是 jQuery 1.3+ 中实现的功能

What version of jQuery are you using?
$.support is a feature implemented in jQuery 1.3+

迷途知返 2024-10-07 11:20:55

您应该升级到最新的 jquery 版本。

You should upgrade to the latest jquery version.

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