📜  js 在 div 中滚动 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:18.137000             🧑  作者: Mango

代码示例1
var divElement = document.getElementById("div");
divElement.scroll({
    top: divElement.scrollHeight,//scroll to the bottom of the element
    behavior: 'smooth' //auto, smooth, initial, inherit
});