jquery滚动问题。如何自动滚动 onclick 到 div

发布于 2024-11-06 00:08:40 字数 139 浏览 0 评论 0原文

只是想知道是否可以在单击时滚动到页面上的某个 div 位置。我似乎无法在互联网上找到任何记录此内容的地方。

我的想法是单击一个按钮,它会将您带到页面上该 div 的位置,可能通过 div ID 来实现。

问候,

泰勒

Just wondering if its possible to scroll to a certain div's position on a page onclick. I can't seem to find anywhere on the internet where this is documented.

My idea is to click a button, and it will take you to the position of that div on the page, possible by the div ID.

Regards,

Taylor

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

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

发布评论

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

评论(3

两仪 2024-11-13 00:08:40

我不确定您希望事件何时触发,所以这里是通用版本

$(selector).click(function() {
   //scroll to div
});

如果您想要一个 id 为 myButton

Im not sure when you want the event to fire so here is the generic version

$(selector).click(function() {
   //scroll to div
});

If you want a <button/> with an id of myButton that when clicked will cause you to scroll to a <div/> with and id of myDiv over the course of half a second:

$('#myButton').click(function() {
   //optionally remove the 500 (which is time in milliseconds) of the
   //scrolling animation to remove the animation and make it instant
   $.scrollTo($('#myDiv'), 500);
});

Using the jQuery ScrollTo plugin.

柏拉图鍀咏恒 2024-11-13 00:08:40

如果您不需要动画滚动,只需使用:

<a href="#myID">click this</a>

http://jsfiddle.net/9qJ7k/

If you don't need an animated scroll just use this:

<a href="#myID">click this</a>

http://jsfiddle.net/9qJ7k/

似最初 2024-11-13 00:08:40

使用这个:

$("#div1").scrollTop(80);

http://api.jquery.com/scrollTop/

Use this:

$("#div1").scrollTop(80);

http://api.jquery.com/scrollTop/

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