js如何實現將滾動條處於最下端

antzone發表於2017-03-17

現在就以div作為例子,當div的內容超出尺寸時,一般要設定一個滾動條,這樣拖動滾動條就可以檢視全部內容了,但是如果我們動態的像div中新增內容的時候,滾動條始終處於最上端,新增加的內容被隱藏了,下面介紹一下如何解決此問題。

程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
#box
{
  height:300px;
  width:500px;
  background-color:red;
  overflow:scroll;
}
#inner
{
  width:200px;
  height:400px;
  margin:0px auto;
  background-color:blue;
}
</style>
<script type="text/javascript"> 
window.onload=function()
{
  var box=document.getElementById("box");
  var newDiv=document.createElement("div");
  newDiv.style.width="200px";
  newDiv.style.height="100px";
  newDiv.style.backgroundColor="green";
  box.appendChild(newDiv);
  box.scrollTop = box.scrollHeight;
 
}
</script> 
</head> 
<body> 
<div id="box">
  <div id="inner"></div>
</div>
</body> 
</html>

以上程式碼實現了我們的要求,滾動條始終處於最下端。

相關閱讀:

1.createElement()函式可以參閱js createElement()一章節。 

2.scrollTop()函式可以參閱js scrollTop用法一章節。 

3.scrollHeight可以參閱scrollHeight屬性一章節。 

相關文章