1. 程式人生 > >【轉載】讓DIV的滾動條自動滾動到最底部的3種方法

【轉載】讓DIV的滾動條自動滾動到最底部的3種方法

轉載自:指令碼之家  → 網路程式設計 → JavaScript → javascript技巧 → 讓DIV的滾動條自動滾動到最底部的3種方法(推薦)

http://www.jb51.net/article/93425.htm

方法一:

使用錨標記要滾動到的位置,然後通過click方法模擬點選滾動到錨所在位置

<script language="javascript1.2" type="text/javascript">
function onGetMessage(context) 
{
msg.innerHTML+=context;
msg_end.click(); 

</script>
<div style="width:500px;overflow:auto">
<div id="msg" style="overflow:hidden;width:480px;"></div>
<div><a id="msg_end" name="1" href="#1"> </a></div>

</div>

方法二:
利用DIV的scrollIntoView方法,將最底端滾動到可視位置 [list=1]<script

language="javascript1.2"
type="text/javascript">
function onGetMessage(context) 
{
msg.innerHTML+=context;
msg_end.scrollIntoView(); 

</script>
<div style="width:500px;overflow:auto">
<div id="msg" style="overflow:hidden;width:480px;"></div>
<div id="msg_end" style="height:0px; overflow:hidden"></div>

</div>

方法三:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="keywords" content="滾動條, scrollbar, 頁面底部, 聊天視窗, " />
<meta name="description" content="有些時候(如開發聊天程式),我們需要將將滾動條(scrollbar)保持在最底部,比如聊天視窗,最新發出和收到的資訊要顯示在最 下方,如果要看到最下方的內容,就必須保證滾動條保持在最底部。" />
<title>將滾動條(scrollbar)保持在最底部的方法 - 滾動條, scrollbar, 頁面底部, 聊天視窗, </title>
</head>
<body>
<div id="example">
<h3 id="example_title">將滾動條(scrollbar)保持在最底部的方法</h3>
<div id="example_main">
<!--************************************* 例項程式碼開始 *************************************-->
<script type="text/javascript">
function add()
{
var now = new Date();
var div = document.getElementById('scrolldIV');
div.innerHTML = div.innerHTML + 'time_' + now.getTime() + '<br />';
div.scrollTop = div.scrollHeight;
}
</script>
<span class="notice">請點選“插入一行”按鈕,插入最新資訊,當出現滾動條時,滾動條將自動保持在底部。</span><br />
 
<div id="scrolldIV" style="overflow:auto; height: 100px; width: 400px; border: 1px solid #999;">
</div>
<input type="button" value="插入一行" onclick="add();">
<!--************************************* 例項程式碼結束 *************************************-->
</div>
</div>
</body>

</html>

以上就是小編為大家帶來的讓DIV的滾動條自動滾動到最底部的3種方法(推薦)的全部內容了,希望對大家有所幫助,多多支援指令碼之家~