4
我正在製作一個角度爲js的聊天應用程序,並且我已將滾動條添加到聊天區域。 下面是代碼:滾動底部
<div class="chat active-chat" id="scrollme" >
<div class="scroll">
<div ng-repeat="c in activeConversations track by c.time| orderBy:'time':false" >
<div class="bubble" ng-class="c.type" >
{{c.message}} <br/>
<a style="color: blue;" ng-click="openFile(c.uploadedFile.fileContentType, c.uploadedFile.file)" ng-if="c.uploadedFile.file" target="_blank">{{c.uploadedFile.fileName}}
</a>
<span class="user_message">{{c.time | date:'yyyy-MM-dd HH:mm:ss'}}</span>
</div>
</div>
</div>
</div>
和CSS是這樣的:
.scroll{
overflow-y: auto;
overflow-x: hidden;
}
#scrollme{
height: 403px;
width: 498px;
padding-right: 10px;
padding-bottom: 76px;
padding-left: 12px;
}
現在我想用默認值保留滾動在底部,當消息到達時,它應該向上滾動。
在此先感謝
變種textarea = document.getElementById('textarea_id'); textarea.scrollTop = textarea.scrollHeight; –