最新的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的遍歷方法