美文网首页
vue中的锚点

vue中的锚点

作者: 粥的进击之旅 | 来源:发表于2019-06-12 00:34 被阅读0次

    今天写搭建一个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