jQuery offsetParent() 方法
jQuery offsetParent() 方法返回第一个被定位的父元素
元素可通过 jQuery 或 CSS 的 position 属性(relative、absolute 或 fixed)来定位
语法
$( selector ).offsetParent()
范例
下面的范例设置 <p> 元素的最近的被定位的父元素的背景颜色
$("button").click(function(){ $("p").offsetParent().css("background-color","red"); });