jQuery offsetParent() 方法

实例

设置 <p> 元素最近位置的父元素的背景色:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("button").click(function(){
  8. $("p").offsetParent().css("background-color", "red");
  9. });
  10. });
  11. </script>
  12. </head>
  13. <body>
  14. <button>设置背景色</button>
  15. <div style="border:1px solid black;width:70%;position:absolute;left:10px;top:50px">
  16. <div style="border:1px solid black;margin:50px;background-color:yellow">
  17. <p>单击按钮设置此段落的第一个定位父元素的背景色</p>
  18. </div></div>
  19. </body>
  20. </html>

定义与用法

offsetParent() 方法返回第一个定位的父元素。

提示:可以使用 jQuery 或 CSS position 属性(relative(相对), absolute(绝对), 或 fixed(固定))定位元素。

语法

  1. $(selector).offsetParent()

分类导航