首页 > TAG信息列表 > obser

监听滚动到底部进行加载更多

let loading = document.getElementByid("#id"); let isLoading = false;  let obser = new IntersectionObserver(function(value) {   let value = value[0];   if (value.isIntersecting && !isLoading) {     // 进行加载   } },{   thresholds: 0.3 //重叠30