Jquery Pagination 页面上的顶部锚标记发生变化

发布于 2024-10-06 23:38:53 字数 275 浏览 4 评论 0原文

我有 Jquery 分页脚本与顶部和底部的导航栏一起使用。当我更改底部的页面时,我希望页面滚动回顶部,但 _top 锚点不起作用,也没有指向内容 ID 的链接。

这是我的代码: http://jsbin.com/amici3/2

分页工作正常,但是当我在本示例中将此页面放在一起,底部和顶部分页菜单不会保持同步......但是它们在真实的页面集中是同步的。

有什么想法吗?谢谢!

I have the Jquery Pagination script working with the Nav bar at the top as well as the bottom. When I change pages at the bottom I want the page to scroll back to the top but the _top anchor isn't working nor is a link to the content ID.

Here is my code: http://jsbin.com/amici3/2

The pagination works properly however when I put this page together for this example the bottom and top pagination menus don't stay in sync...however they do in the real set of pages.

Any ideas? Thanks!

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

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

发布评论

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

评论(1

走野 2024-10-13 23:38:53

由于您已经在使用 jquery,这应该适合您:

$("html").scrollTop(0);

或者

$("body").scrollTop(0);

将其添加到您的回调中将导致 jquery 将您滚动到页面顶部。

As you are already using jquery, this should work for you:

$("html").scrollTop(0);

or

$("body").scrollTop(0);

Adding this to your callback will cause jquery to scroll you to the top of the page.

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