使用前端路由,當切換到新路由時,想要頁面滾到頂部,或者是保持原先的滾動位置,就像從新加載頁面那樣。 vue-router 能作到,並且更好,它讓你能夠自定義路由切換時頁面如何滾動。html
scrollBehavior 方法接收 to 和 from 路由對象。第三個參數 savedPosition 當且僅當 popstate 導航 (經過瀏覽器的 前進/後退 按鈕觸發) 時纔可用。前端
const router = new VueRouter({ routes: [...], scrollBehavior (to, from, savedPosition) { // return 指望滾動到哪一個的位置 } })
返回滾動位置的對象信息vue
{ x: number, y: number } { selector: string }
若是返回一個布爾假的值,或者是一個空對象,那麼不會發生滾動。git
<div id="app"> <h1>滾動行爲</h1> <ul> <li><router-link to="/">首頁</router-link></li> <li><router-link to="/foo">導航</router-link></li> <li><router-link to="/bar">關於</router-link></li> <li><router-link to="/bar#an1">紅色頁面</router-link></li> <li><router-link to="/bar#an2">藍色頁面</router-link></li> </ul> <router-view></router-view> </div> <script> var Home = { template:"<div>home</div>" } var Foo = { template:"<div>foo</div>" } var Bar = { template: ` <div> bar <div style="height:500px;background: yellow;"></div> <p id="an1" style="height:500px;background: red;">紅色頁面</p> <p id="an2" style="height:300px;background: blue;">藍色頁面</p> </div> ` } var router = new VueRouter({ mode:"history", //控制滾動位置 scrollBehavior (to, from, savedPosition) { //判斷若是滾動條的位置存在直接返回到當前位置,否者返回到起點 if (savedPosition) { return savedPosition } else { if (to.hash) { return {selector: to.hash} } } }, routes:[ { path:"/",component:Home }, { path:"/foo",component:Foo }, { path:"/bar",component:Bar } ] }); var vm = new Vue({ el:"#app", router }); </script>
地址:https://github.com/haxxk/xu_s...github