我這裏用的很簡單 跟以前搜索以後跳到搜索結果位置同樣 錨點html
scrollTop屬性表示被隱藏在內容區域上方的像素數。元素未滾動時,scrollTop的值爲0,若是元素被垂直滾動了,scrollTop的值大於0,且表示元素上方不可見內容的像素寬度瀏覽器
因爲scrollTop是可寫的,能夠利用scrollTop來實現回到頂部的功能學習
<body style="height:2000px;"> <button id="test" style="position:fixed;right:0;bottom:0">回到頂部</button> <script> test.onclick = function(){ document.body.scrollTop = document.documentElement.scrollTop = 0; } </script> </body>
3.
scrollTo()flex
scrollTo(x,y)方法滾動當前window中顯示的文檔,讓文檔中由座標x和y指定的點位於顯示區域的左上角ui
設置scrollTo(0,0)能夠實現回到頂部的效果code
<body style="height:2000px;"> <button id="test" style="position:fixed;right:0;bottom:0">回到頂部</button> <script> test.onclick = function(){ scrollTo(0,0); } </script> </body>
4.htm
scrollBy()blog
scrollBy(x,y)方法滾動當前window中顯示的文檔,x和y指定滾動的相對量ip
只要把當前頁面的滾動長度做爲參數,逆向滾動,則能夠實現回到頂部的效果文檔
<body style="height:2000px;"> <button id="test" style="position:fixed;right:0;bottom:0">回到頂部</button> <script> test.onclick = function(){ var top = document.body.scrollTop || document.documentElement.scrollTop scrollBy(0,-top); } </script> </body>
5.
scrollIntoView()
Element.scrollIntoView方法滾動當前元素,進入瀏覽器的可見區域
該方法能夠接受一個布爾值做爲參數。若是爲true,表示元素的頂部與當前區域的可見部分的頂部對齊(前提是當前區域可滾動);若是爲false,表示元素的底部與當前區域的可見部分的尾部對齊(前提是當前區域可滾動)。若是沒有提供該參數,默認爲true
使用該方法的原理與使用錨點的原理相似,在頁面最上方設置目標元素,當頁面滾動時,目標元素被滾動到頁面區域之外,點擊回到頂部按鈕,使目標元素從新回到原來位置,則達到預期效果
<body style="height:2000px;"> <div id="target"></div> <button id="test" style="position:fixed;right:0;bottom:0">回到頂部</button> <script> test.onclick = function(){ target.scrollIntoView(); } </script> </body>
學習連接:http://www.javashuo.com/article/p-wzjbwbxt-bu.html