HTML锚链接 - 偏移位置

时间:2011-10-31 09:48:50

标签: javascript html anchor

我在下面创建了一个示例页面:
http://glustik.com/glustik2/index.html

当您点击前两个链接时,您可以看到锚点如何定位到顶部而不是向下(250个左右像素)。

有没有办法将锚点召唤到窗口上的某个位置?

感谢。

1 个答案:

答案 0 :(得分:1)

您可以使用jQuery animate函数将scrollTop设置为所需位置。

$("html, body").animate({ scrollTop: $("#your-div").offset().top - YourHeadersHeight }, 500);