知识学堂 > 课程 > DIV显示底部,滚动条到底部

DIV显示底部,滚动条到底部

发布日期:2019/5/17 来源:聚恒【返回】

<script>
    $(function () {
        var h = $(document).height() - $(window).height();
        $(document).scrollTop(h);
    })
</script>