1. 程式人生 > >當前元素距離文檔頂部距離-代碼封裝

當前元素距離文檔頂部距離-代碼封裝

ram turn 元素 null nod posit title parent 頂部

function getPositionTop(node) {
        var top = node.offsetTop;
        var parent = node.offsetParent;
        while(parent != null) {
            top += parent.offsetTop;
            parent = parent.offsetParent;
        }
        return top;
    };

當前元素距離文檔頂部距離-代碼封裝