其他分享
首页 > 其他分享> > 跳转至页面指定位置

跳转至页面指定位置

作者:互联网

  1. 锚点定位
<!-- 页面内的跳转 -->
<a href="#id">跳转</a>

<!-- 新页面的跳转 -->
<a href="a.html#id">跳转</a>
  1. js实现
// id格式#test,.class
document.querySelector(id).scrollIntoView(true)

标签:scrollIntoView,指定,class,锚点,跳转,js,id,页面
来源: https://www.cnblogs.com/myc-xiaochaochao/p/13878142.html