監聽區域滾動的scroll事件,計算
scroll.clientheight //滾動區域高度
scroll.scrolltop //當前滾動位置
scroll.scrollheight //整個滾動區域高度
// 滾動區域高度 + 當前滾動位置 === 整個滾動區域高度
scroll.clientheight + scroll.scrolltop === scroll.scrollheight
//滑動載入更多
const scroll = document.
getelementbyid
('scrolllist');
scrolldom.
onscroll=(
)=>
else
}}
init 函式參考 div滾動到底部自動載入
重點 一開始一直進不了滾動事件,最後發現是因為需要滾動元素的父元素沒有設定overflow hidden 記住了!如果不設定fixed的話,就要設定元素固定的高!css contentboxhtml contentbox schooldeatl div loaddiv style width 100...
ListView滾動到底部自動載入更多
1.自己寫乙個loadingview,有2種狀態 1種是載入時的顯示,一種是載入失敗 網路超時 時候的重發介面 2.將loadingview放到listview的footview中 3.在baseadapter的getview中判斷position是不是最後乙個.例如當前有20條記錄,positio...
vue滾動到底部載入
之前也做過html引用 vue的滾動到底部載入的 ref box 這個別忘了加,也可以直接在方法裡 scroll orderscroll e 高很重要!不然進不了滾動事件!踩過的坑 meal list loaddiv style height 500px overflow auto ref box ...