最新的Web开发教程
 

Element offsetParent Property

<元素对象

找一个的offsetParent <div>元素:

<div id="test">
<p>Click the button to get the offsetParent for the test div.</p>
<p><button onclick="myFunction()">Try it</button></p>
<p>offsetParent is: <span id="demo"></span></p>
</div>
<script>
function myFunction() {
    var testDiv = document.getElementById("test");
    document.getElementById("demo").innerHTML = testDiv.offsetParent;
}
</script>
试一试»

定义和用法

offsetParent属性返回具有静态以外的位置最近的祖先。

注:offsetParent用于与offsetLeft的offsetTop属性。

提示:如果元素被设置为显示=“无” offsetParent将返回null。


浏览器支持

属性
offsetTop

句法

返回元素的offsetParent:

object .offsetParent

技术细节

默认值: 没有默认值
返回值: 一个节点对象,代表最近的定位的祖先
DOM版本: CSSOM

<元素对象