Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

HTMLElement.offsetTop

HTMLElement.offsetTop 为只读属性,它返回当前元素相对于其 offsetParent 元素的顶部的距离。

语法

topPos = element.offsetTop;

参数

  • topPos 为返回的像素数。

示例

var d = document.getElementById("div1");
var topPos = d.offsetTop;
 
if (topPos > 10) {
  // div1 距离它的 offsetParent 元素的顶部的距离大于 10 px
}

规范

规范名称 规范状态 备注
CSS Object Model (CSSOM) View Module
offsetTop
Working Draft  

相关链接

文档标签和贡献者

 此页面的贡献者: ziyunfei, iugo, teoli, AlexChao
 最后编辑者: ziyunfei,