jQuery 锚点幻灯片 - 在 Chrome 中不起作用?

发布于 2024-11-17 22:08:28 字数 564 浏览 1 评论 0原文

我公司网站不再支持滑动导航;使用 Google Chrome 时,http://www.adaptdesign.com。它曾经完美地工作,直到我更新浏览器...

该脚本是从 http://www.position-absolute.com/articles/better-html-anchor-a-jquery-script-to-slide-the-scrollbar/ ,我再次用那些更新的内容替换了我的内容,以防万一这些内容较新,他在 www.position-relative.net/creation/anchor/ 上的示例可以在 Chrome 中运行,而我的网站仍然无法滚动(单击链接根本没有效果) !

我很困惑为什么这不起作用......有人有任何想法吗?非常感谢。

The navigation sliding no longer works on my company's site; http://www.adaptdesign.com when using Google Chrome. It used to work perfectly until I updated the browser...

The script was downloaded from http://www.position-absolute.com/articles/better-html-anchor-a-jquery-script-to-slide-the-scrollbar/ , I replaced my one with those again incase those were newer, and his example at www.position-relative.net/creation/anchor/ works in Chrome whereas my website still doesn't scroll (clicking the link has no effect at all)!

I'm stumped as to why this isn't working... does anyone have any ideas? Many thanks.

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

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

发布评论

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

评论(1

梨涡少年 2024-11-24 22:08:28

我在 Chrome 中使用此脚本时遇到了完全相同的问题。看来它是由空的命名锚引起的。

<a name="top" id="top"></a>

没有捕获链接,但是

<a name="top" id="top">
<ul>
...
</ul>
</a>

可以。试着把你的

<a name="aboutblock" id="aboutblock"></a>

东西包裹起来。

I was having the exact same problem with this script in Chrome. It appears it's caused by empty named anchors.

<a name="top" id="top"></a>

doesn't catch links, but

<a name="top" id="top">
<ul>
...
</ul>
</a>

does. Try wrapping your

<a name="aboutblock" id="aboutblock"></a>

around something.

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