如何让div自动滚动到底部?

时间:2013-12-28 23:59:46

标签: javascript html css chat

我希望我的div在添加段落时自动保持在底部,我该怎么做?这是我的代码:

http://pastebin.com/wespDUXp

1 个答案:

答案 0 :(得分:2)

在这里:http://jsfiddle.net/tMnvJ/

只需将JavaScript代码放入函数中,然后通过添加内容的任何进程调用它。像这样......

function addParagraph()
{
    //do you add paragraph stuff...
    //then call this line to scroll to the bottom of your div
    document.getElementById('myDiv').scrollTop = document.getElementById('myDiv').scrollHeight;
}

希望有所帮助。