我使用此函数来获取元素相对于页面的y坐标:
function getY(oElement)
{
var curtop = 0;
if (oElement.offsetParent)
{
while (oElement.offsetParent)
{
curtop += oElement.offsetTop;
oElement = oElement.offsetParent;
}
}
else if (oElement.y)
{
curtop += oElement.y;
}
return curtop;
}
现在我想做同样的事情,但是要获得相对于底部而不是顶部的位置,似乎没有像“ offsetBottom”这样的东西。
我怎样才能做到这一点?
非常感谢
最佳答案
将其与正文/文档本身的高度进行比较。