美文网首页
设置页面滚动条到最底端

设置页面滚动条到最底端

作者: CoderAPang | 来源:发表于2017-12-25 11:07 被阅读0次

    jquery:

    $(function(){

      var h = $(document).height()-$(window).height();

      $(document).scrollTop(h);

    });

    js:

    window.onload = function(){

      var h = document.documentElement.scrollHeight || document.body.scrollHeight;

      window.scrollTo(h,h);

    }

    相关文章

      网友评论

          本文标题:设置页面滚动条到最底端

          本文链接:https://www.haomeiwen.com/subject/etflgxtx.html