<div @scroll.passive="scrollHandle" style="width:80px;height:100px;overflow-y:auto;">div>
元素加上高度
function scrollHandle(e){
console.log("高度" + e.target.scrollHeight);
console.log("距离上面" + e.target.scrollTop);
console.log("元素高度" + e.target.clientHeight);
// 滚动条距离底部的距离scrollBottom
let scrollBottom =
e.target.scrollHeight -
e.target.scrollTop -
e.target.clientHeight;
// if (scrollBottom < 100) {
// *** 作
// }
console.log("距离底部" + scrollBottom);
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)