最新的Web开发教程
 

jQuery offsetParent() Method

<jQuery的遍历方法

设置的最近定位的父元素的背景颜色<p>元素:

$("button").click(function(){
    $("p").offsetParent().css("background-color", "red");
});
试一试»

定义和用法

offsetParent()方法返回的第一个定位的父元素。

提示:一个元素可以定位与jQuery,或用CSS position属性( relative, absolute ,或fixed )。


句法

$(selector).offsetParent()

<jQuery的遍历方法