Jquery scrollTo 不起作用:对象不支持此属性或方法
您好,我已将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否将目标 ID 命名为:“#midGrids”?
你必须做这样的事情:
did you named your target id to: "#midGrids" ?
you have to do something like this: