©
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
返回第一个匹配元素用于定位的父节点。
这返回父元素中第一个其position设为relative或者absolute的元素。此方法仅对可见元素有效。
设置最近的祖先定位元素的背景颜色
<div style="width:70%;position:absolute;left:100px;top:100px"> <div style="margin:50px;background-color:yellow"> <p>点击下面的按钮可以设置本段落的最近的父(祖先)元素的背景色。</p> <div> </div> <button>点击这里</button>
$("button").click(function(){ $("p").offsetParent().css("background-color","red"); });