获取"myDIV"的offsetTop位置:
const element = document.getElementById("myDIV");
let pos = element.offsetTop;
亲自试一试 »
获取"myDIV"的位置:
const element = document.getElementById("test");
Let pos1 = element.offsetTop;
let pos2 = element.offsetLeft;
亲自试一试 »
下面有更多示例。
这个offsetTop
属性返回相对于父级的顶部位置(以像素为单位)。
返回值包括:
这个offsetTop
属性是只读的。
所有块级元素报告相对于偏移父级的偏移量:
偏移父级是具有非静态位置的最近祖先。
如果不存在偏移父级,则偏移量是相对于文档正文的。
返回顶部偏移位置:
element.offsetTop
类型 | 描述 |
数字 | 元素的顶部位置(以像素为单位)。 |
创建粘性导航栏:
// Get the navbar
const navbar = document.getElementById("navbar");
// Get the offset position of the navbar
const sticky = navbar.offsetTop;
// Add the sticky class to the navbar when you reach its scroll position. Remove the sticky class when you leave the scroll position.
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
亲自试一试 »
element.offsetTop
所有浏览器都支持:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!