最新的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

<元素對象