如何将用户重定向到另一个html页面的html页面上的“section”?

时间:2017-12-18 17:06:57

标签: javascript html onclick anchor sections

  1. 我有一个主网页 - index.html,其中有一个“#features”部分。
  2. 我在另一个网页subpage.html上有一个后退按钮,用于将用户重定向到 index.html页面(我使用过onclick =“document.location = index.html“将用户重定向到index.html页面”
  3. 当用户点击subpage.html页面上的后退按钮时,我想将用户重定向到index.html页面上的“#features”部分。 我怎么能这样做?

3 个答案:

答案 0 :(得分:0)

您可以通过内部页面锚点来完成。试试这个:

在subpage.html中

window.location.href= "index.html#features";
index.html中的

<a id="features">row 15 data here.</a>

Working fiddle here

答案 1 :(得分:0)

这就是我解决问题的方法。 只需用a标签包裹按钮即可 href="/index.html#feature"。 如果两个页面都在同一目录中,请使用href="./index.html#feature"

答案 2 :(得分:0)

在javascript中使用 scrollIntoView 功能。查看文档here