今天写搭建一个PC网站,用到返回顶点的功能,想到了锚点
用到了scrollIntoView()方法
<div class="to_top" @click="toTop()"></div>
...
methods:{
toTop(){
let header = document.querySelector(".header")
header.scrollIntoView(true)
}
}
这样点击就能跳转到header的顶部
今天写搭建一个PC网站,用到返回顶点的功能,想到了锚点
用到了scrollIntoView()方法
<div class="to_top" @click="toTop()"></div>
...
methods:{
toTop(){
let header = document.querySelector(".header")
header.scrollIntoView(true)
}
}
这样点击就能跳转到header的顶部
本文标题:vue中的锚点
本文链接:https://www.haomeiwen.com/subject/tcphfctx.html
网友评论