jQuery的offsetParent()方法返回一個jQuery對象,該對象包含了指定元素的最近的具有定位屬性的祖先元素。
使用offsetParent()方法的語法如下:
$(selector).offsetParent()
其中,selector為要獲取offsetParent的元素的選擇器。
示例:
// 獲取元素的offsetParent
var offsetParent = $(".child-element").offsetParent();
// 遍歷offsetParent的祖先元素并設置背景顏色
offsetParent.parents().css("background-color", "yellow");