vue專案 設定scrollTop不起作用 總結

Code陳發表於2018-06-05

今天在開發中,遇到這樣一個情景。一個頁面中有三個模組,每個模組對應一個標題,每個模組內容都很長,所以需要點選當前模組對應的標題滾動到模組所在位置。
我想的方案是獲取到每個模組距離文件頂部的距離,然後將值賦給對應要滾動的元素。 步驟如下:

  • 首先給每個模組一個id,例如:
<div class="module module1" id="anchor-0">
<div class="module module1" id="anchor-1">
<div class="module module1" id="anchor-2">
複製程式碼
  • 點選每個標題的時候獲取到當前模組的id
<a v-for="(navItem,index) in navData" :key="index" class="navItem" :class="{active:index == i }" @click="goAnchor('#anchor-'+index)">{{navItem.name}}</a>

methods: {
      // tab點選滾動
      goAnchor(val) {
        let anchor = this.$el.querySelector(val);
      },
複製程式碼

*最後就可以獲取每個模組距離文件頂部的距離了,然後賦值給對應要滾動的元素就可以了

methods: {
      // tab滾動
      goAnchor(val) {
        let anchor = this.$el.querySelector(val);
        this.$nextTick(() => {
          document.querySelector(".el-main").scrollTop = anchor.offsetTop;
        });
      },
複製程式碼

切記:在這裡一定要加上this.$nextTick()方法,否則document.querySelector(".el-main").scrollTop的值永遠為0,不會賦值成功的!

相關文章