window scroll事件 Posted on 2014-08-11 | Edited on 2019-04-09 | In web , js 123456789101112131415161718// 滚动条滑动到底部,开始加载$(window).on('scroll', function(){ var docHeight = Drupal.verycdn_tools.getDocHeight(); var scrollTop = $(this).scrollTop(); var winHeight = $(this).height(); if(scrollTop >= docHeight - winHeight) { //TODO }});Drupal.verycdn_tools.getDocHeight = function () { var doc = document; return Math.max( Math.max(doc.body.scrollHeight, doc.documentElement.scrollHeight), Math.max(doc.body.offsetHeight, doc.documentElement.offsetHeight), Math.max(doc.body.clientHeight, doc.documentElement.clientHeight) );}