javascript 这是一个JS函数,用于查找元素相对于窗口的顶部和左侧偏移量

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 这是一个JS函数,用于查找元素相对于窗口的顶部和左侧偏移量相关的知识,希望对你有一定的参考价值。

// Notes for the findPos function:

// * This does *not* work on objects with
// position: fixed, as such objects don't
// have offset parents!!!

// * Be sure to feed target[0] into this,
// rather than just target!!!
function findPos(obj) {
  var curleft = 0;
  var curtop = 0;
  if (obj.offsetParent) {
    do {
      curleft += obj.offsetLeft;
      curtop += obj.offsetTop;
    } while ((obj = obj.offsetParent));
    return [curleft, curtop];
  }
}

以上是关于javascript 这是一个JS函数,用于查找元素相对于窗口的顶部和左侧偏移量的主要内容,如果未能解决你的问题,请参考以下文章

用于在 url 中查找部分字符串的 Knockout.js 数据绑定

散列 JavaScript 对象

查找应用 Javascript 的内联样式来调试 Javascript

JavaScript简介

核心以太坊函数的JavaScript库

Ajax 不适用于 javascript。我应该做些啥?