获取scroll位置,页面指向指定sroll位置

来源:互联网 发布:mysql分类后如何排序 编辑:程序博客网 时间:2024/05/16 06:34
if (document.documentElement && document.documentElement.scrollTop) {
        t = document.documentElement.scrollTop;
        l = document.documentElement.scrollLeft;
        w = document.documentElement.scrollWidth;
        h = document.documentElement.scrollHeight;
    } else if (document.body) {
        t = document.body.scrollTop;
        l = document.body.scrollLeft;
        w = document.body.scrollWidth;
        h = document.body.scrollHeight;

    }


window.scrollTo(x,y);

原创粉丝点击