用原生JS判断页面是否滑动到底部

window.onscroll=function(){
     
	//变量scrollTop是滚动条滚动时,滚动条上端距离顶部的距离
    var scrollTop = document.documentElement.scrollTop||document.body.scrollTop;

    //变量windowHeight是可视区的高度
    var windowHeight = document.documentElement.clientHeight || document.body.clientHeight;

    //变量scrollHeight是滚动条的总高度(当前可滚动的页面的总高度)
    var scrollHeight = document.documentElement.scrollHeight||document.body.scrollHeight;

    //滚动条到底部
	if(scrollTop+windowHeight>=scrollHeight){
     
		//要进行的操作
	}
 }

你可能感兴趣的:(前端,javascript)