设置页面滚动条到最底部

        利用JS设置scrollLeft和scrollTop属性,超过屏幕宽度,就会实现如标题所描述的效果:

  1.          
  2. function setScrollLeft() { 
  3.     with(window.document.body) { 
  4.         setAttribute("scrollLeft",1024); 
  5.         setAttribute("scrollTop",4000); 
  6.     } 
  7. setScrollLeft(); 

        将代码块添加到页面<script></script>块中,即可。

你可能感兴趣的:(设置页面滚动条到最底部)