When using AngularJs for instant messaging, you need to fix the scroll bar of p to the bottom.
I tried the following method now, but no response.
//----p滚动条置底
$scope.scrollWindow=function(){
var _el = document.getElementById('chat_history');
_el.scrollTop = _el.scrollHeight;
};
//----使用方法
$timeout(function(){
$scope.scrollWindow();
},500);
Answers that have been successfully implemented.
HTML5
的APIDOMNodeInserted
is used to detect changes in element content.