©本文檔使用php中文網手册發布
返回第一个匹配元素用于定位的父节点。
这返回父元素中第一个其position设为relative或者absolute的元素。此方法仅对可见元素有效。
设置最近的祖先定位元素的背景颜色
点击下面的按钮可以设置本段落的最近的父(祖先)元素的背景色。 点击这里 jQuery 代码: $("button").click(function(){ $("p").offsetParent().css("background-color","red"); });
点击下面的按钮可以设置本段落的最近的父(祖先)元素的背景色。
$("button").click(function(){ $("p").offsetParent().css("background-color","red"); });