Jquery scrollTo 不起作用:对象不支持此属性或方法

发布于 2024-11-10 16:41:29 字数 442 浏览 3 评论 0原文

您好,我已将 jquery-1.5.1.min.js 和 jquery.scrollTo-min.js 脚本包含到我的页面中。我似乎已经适当地设置了锚标记,但是当我单击其中一个锚时,我收到了上述错误。这是我尝试过的一些代码。

<a href="#" onclick="$('#midGrids').scrollTo('#avgSpreadGroupGridHere', 800);">Avg Spread</a>
<a href="#" onclick="$.scrollTo('#avgSpreadGroupGridHere', 800);">Avg Spread</a>
<a href="#" onclick="$(...).scrollTo('#avgSpreadGroupGridHere', 800);">Avg Spread</a>

Hello I have included the jquery-1.5.1.min.js and jquery.scrollTo-min.js scripts into my page. I've setup the anchor tags seemingly appropriately, but when I click on one of the anchors I get the error mentioned above. Here's some code I've tried.

<a href="#" onclick="$('#midGrids').scrollTo('#avgSpreadGroupGridHere', 800);">Avg Spread</a>
<a href="#" onclick="$.scrollTo('#avgSpreadGroupGridHere', 800);">Avg Spread</a>
<a href="#" onclick="$(...).scrollTo('#avgSpreadGroupGridHere', 800);">Avg Spread</a>

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

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

发布评论

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

评论(1

断念 2024-11-17 16:41:29

您是否将目标 ID 命名为:“#midGrids”?

你必须做这样的事情:

<a href="#" id="target">Target</a>

<a href="#" onclick="$(...).scrollTo('#target', 800);">Avg Spread</a> 

did you named your target id to: "#midGrids" ?

you have to do something like this:

<a href="#" id="target">Target</a>

<a href="#" onclick="$(...).scrollTo('#target', 800);">Avg Spread</a> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文