最近写页面写不少东西,,好久没这么频繁写js了。废话不说了...
用户滑动页面,捕捉用户翻到页面底部时,触发事件。
$(window).scroll(function () { var scrollTop = $(this).scrollTop(); // 页面卷上去的高度 var windowHeight = document.body.clientHeight; // 当前屏幕上页面的高度 var docHeight = $(document).height(); // 文档的高度 // 表示,如果滑到距离底部将近50px的时候,开始触发事件 if (docHeight - (scrollTop + windowHeight) < 50 ) { // do something } });
时间: 2024-11-08 21:06:36