如何在角度页面组件中重定向到 div 的特定部分

  • 本文关键字:div 重定向 定部 组件 angular
  • 更新时间 :
  • 英文 :


如何在保存时重定向到角度页面组件中div的特定部分,我必须重定向页面的某些div this.router.navigate(['dashboard/operations/events'](;

<html>
<head>
<title>Welcome</title>
</head
<body>
<h2>Welcome</h2>
<p>
<i>Redirect to a particular div section in the same page</i>
</p>
<a href="#home"> Home </a>
<a href="#about"> About Us </a>
<a href="#contact"> Contact Us </a>
<br/>
<div id="home">
<h2>Home section</h2>
</div>
<div id="about">
<h2>About Us section</h2>
</div>
<div id="contact">
<h2>Contact Us section </h2>
</div>
</body>
</html>

最新更新