JS消息窗口滚动到底部


//消息窗口滚动到底部
function scrollBotton(){
	var div = document.getElementById('msg-list');
	div.scrollTop = div.scrollHeight;
}