创建导航到页面特定部分的URL

时间:2018-06-15 17:54:48

标签: html angular

如何创建可以导航到我的单页应用程序(Angular2)的特定部分的路由器链接

例如我的网站www.example.com有三个产品:productOne,productTwo nad product3。

在我的网站上有三节100vh。

我希望在www.example.com/productOne / www.example.com/productTwo /www.example.com/productThree上找到导航到该网页段的网址。

  • 我不希望我的链接有#

1 个答案:

答案 0 :(得分:1)

您应该可以使用锚点<a href="#section">Link to Section 1</a>https://www.yoursite.com/#section来实现此目的。

<body>
    <section id="#section">
        <div id="#div"></div>
    </section>
    <footer id="#footer">
        ...
    </footer>
  ...