add: 列表自动滚动到底部
This commit is contained in:
7
Frontend/wwwroot/js/helper.js
Normal file
7
Frontend/wwwroot/js/helper.js
Normal file
@@ -0,0 +1,7 @@
|
||||
function scrollToSection() {
|
||||
let element = document.getElementById("chat-scroll-zone")
|
||||
element.scrollTo({
|
||||
top: element.scrollHeight - element.offsetHeight,
|
||||
behavior: "smooth"
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user