/** * 設置聊天框中的滾動條始終在底部 */ function setScrollForBottom(id){ var height = document.getElementById(id).scrollHeight; $("#"+id).scrollTop(height); }ide