我希望我的div在添加段落时自动保持在底部,我该怎么做?这是我的代码:
答案 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;
}
希望有所帮助。