HTMLElement.offsetParent - Web API 接口参考 编辑
HTMLElement.offsetParent
是一个只读属性,返回一个指向最近的(指包含层级上的最近)包含该元素的定位元素或者最近的 table,
td,
th,
body
元素。当元素的 style.display
设置为 "none" 时,offsetParent
返回 null
。offsetParent
很有用,因为 offsetTop
和 offsetLeft
都是相对于其内边距边界的。
语法
parentObj = element.offsetParent;
- parentObj 是一个对象引用,当前元素相对于该对象偏移(offset)。
浏览器兼容性
在 Webkit 中,如果元素为隐藏的(该元素或其祖先元素的 style.display
为 "none"),或者该元素的 style.position
被设为 "fixed",则该属性返回 null
。
在 IE 9 中,如果该元素的 style.position
被设置为 "fixed",则该属性返回 null
。(display:none
无影响。)
规范
Specification | Status | Comment |
---|---|---|
CSS Object Model (CSSOM) View Module offsetParent | Working Draft |
Browser compatibility
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论