1. 程式人生 > >解決滾動條定位

解決滾動條定位

js中獲取當前位置:

function ScollPostion() {

       var t,l;
       if (document.documentElement && document.documentElement.scrollTop) {
       t = document.documentElement.scrollTop;
       l = document. documentElement.scrollLeft;
       } else if (document.body) {
       t = document.body.scrollTop;
       l = document.body.scrollLeft;
       }
       document.getElementById("scrollTop").value=t;

        }

js中定位當前位置:

function queryPosition(){
   var  t=Number("${scrollTop}");
   window.scrollTo(0,t);
   }