Home > Web Front-end > JS Tutorial > body text

In-depth analysis of JS OffsetParent attribute_javascript skills

WBOY
Release: 2016-05-16 17:04:16
Original
1106 people have browsed it

The offsetParent property returns a reference to an object that is closest to the element calling offsetParent (closest in the containing hierarchy) and is a container element that has been CSS positioned. If this container element is not CSS positioned, the value of the offsetParent attribute is a reference to the root element (html element in standards compatibility mode; body element in weird rendering mode). When the container element's style.display is set to "none" (Except for IE and Opera), the offsetParent property returns null.

Syntax:
parentObj = element.offsetParent

Variables:
· parentObj is a reference to an element in which the offset of the current element is calculated.

Copy code The code is as follows:





Untitled Document




Testing the OffsetParent property






Test results:
Firefox3: "BODY"
Internet Explorer 7: "BODY"
Opera 9.51: "BODY"
Chrome 0.2: "BODY"
Safari 3: "BODY

Conclusion:
When neither an element nor the elements in the DOM structure hierarchy are CSS positioned (absolute or relative) [or an element is CSS positioned Sometimes when elements in the DOM structure hierarchy are not positioned by CSS, the value of the offsetParent attribute of this element is the root element. To be more precise, the reference for various offset calculations (offsetTop, offsetLeft, etc.) of this element is the Body element. (In fact, regardless of standard compatibility mode or weird mode, the root element is the Body element)

Test code 2

Copy code The code is as follows:





Untitled Document




div test code






Test result:
Firefox3: "DIV"
Internet Explorer 7: "DIV"
Opera 9.51: "DIV"
Chrome 0.2: "DIV"
Safari 3: "DIV"

Conclusion:
When the parent element of an element is CSS positioned (absolute or relative), the value of the offsetParent attribute of this element is that of its parent element. To be more precise, the reference for various offset calculations (offsetTop, offsetLeft, etc.) of this element is its parent element

Test code 3

Copy code The code is as follows:





Untitled Document






测试OffsetParent属性







测试结果:
Firefox3:"H1"
Internet Explorer 7:"H1"
Opera 9.51:"H1"
Chrome 0.2:"H1"
Safari 3:"H1"

结论:
当某个元素及其父元素都未进行CSS定位时(absolute或者relative),则这个元素的offsetParent属性的取值为在DOM结构层次中距离其最近,并且已进行了CSS定位的元素。

Related labels:
js
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template