欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

关于UC浏览器兼容scroll事件问题

程序员文章站 2022-09-14 17:26:24
经过本人查阅无数资料,最终得出一个比较简单,具有一定兼容性的结果。 $(window).scroll(function( ) { var scrollTop = document.documentElement.scrollTop || window.pageYOffset || document. ......

    经过本人查阅无数资料,最终得出一个比较简单,具有一定兼容性的结果。

 

   $(window).scroll(function( ) {

      var scrolltop = document.documentelement.scrolltop || window.pageyoffset || document.body.scrolltop;

     var scrollheight = document.body.scrollheight;

     var windowheight = document.body.clientheight; 

     if(scrolltop + windowheight == scrollheight) {    

              // alert("已经到最底部了”);

       }

   });