如何用代码设置滚动条的位置?

导读:
  1.设置窗口滚动条的位置:
  window.scroll(0,document.body.scrollHeight)
  例,在打开网页时让页面处于页面底端
  
  2.设置组件的滚动条的位置:
  假设有个输入框,id为TextArea1
  方法一:
  TextArea1.scrollTop=100;//滚动到输入框的100位置
  方法二:
  document.getElementById("TextArea1").scrollTop=document.getElementById("TextArea1").scrollHeight; //滚动到输入框的底端
  体验代码:
  
  
  
  
Happy New Year ! ! !


  
  


>


  


  



  



  



  this is a test!
  


  

this is a test!


  
  
  

你可能感兴趣的:(function,layer)