jQuery CSS 操作 - offsetParent() 方法
实例
设置最近的祖先定位元素的背景颜色:
- $("button").click(function(){
- $("p").
offsetParent()
.css("background-color","red");- });
定义和用法
offsetParent() 方法返回最近的祖先定位元素。
定位元素指的是元素的 CSS position 属性被设置为 relative、absolute 或 fixed 的元素。
可以通过 jQuery 设置 position,或者通过 CSS 的 position 属性。
语法
- $(selector).offsetParent()