div在javascript中滚动到

发布于 2024-08-12 04:33:16 字数 375 浏览 4 评论 0原文

我有几个包含内容的 div。一些上下文包含

content <a name='SomeName'> cool content </a> more content

在 Javascript 中,如何强制 SomeName 名称仅滚动到该 DIV 的视图中。问题是页面上有很多包含内容的 DIV。

我知道 Div 的对象。 Div 可以包含层次结构中的其他 div 等。其中某处有 SomeName 锚点。

站点:http://BiblePro.BibleOcean.com

I have several divs with content. Some of the context is wrapped with,

content <a name='SomeName'> cool content </a> more content

In Javascript how do I force the SomeName name to scroll into view for that DIV only. The catch is that there are many DIVs on the page with content.

I have the Div's object known. The Div can contain other divs etc in a hierarchy. Somewhere in there is the SomeName anchor.

site: http://BiblePro.BibleOcean.com

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

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

发布评论

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

评论(2

薆情海 2024-08-19 04:33:16

滚动到视图命令怎么样?不确定这是否是 IE 特定的。

document.getElementById("SomeName").scrollIntoView(true);

what about scrollintoview command? Not sure if thats IE specific.

document.getElementById("SomeName").scrollIntoView(true);

爱她像谁 2024-08-19 04:33:16

您可以将窗口位置设置为包含 # 锚点,浏览器将滚动到它。

Window.Location = "http://yourSite.com/YourPage.html#SomeName";

You could set the Window Location to include the # anchor, and the browser will scroll to it.

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