返回值:jQueryoffsetParent()
V1.2.6jQuery offsetParent() 方法概述
返回第一個(gè)匹配元素用于定位的父節(jié)點(diǎn)。
這返回父元素中第一個(gè)其position設(shè)為relative或者absolute的元素。此方法僅對(duì)可見(jiàn)元素有效。
示例
描述:
設(shè)置最近的祖先定位元素的背景顏色
HTML 代碼:
<div style="width:70%;position:absolute;left:100px;top:100px">
<div style="margin:50px;background-color:yellow">
<p>點(diǎn)擊下面的按鈕可以設(shè)置本段落的最近的父(祖先)元素的背景色。</p>
<div>
</div>
<button>點(diǎn)擊這里</button>
jQuery 代碼:
$("button").click(function(){
$("p").offsetParent().css("background-color","red");
});