jQuery 中的 jQuery.position() 和 jQuery.offset() 有什么区别?
jQuery position() 方法
position() 方法获取的元素相对于其偏移父级的顶部和 left 位置
返回的对象包含两个整型属性:top 和 left。为了使计算结果准确,请确保使用像素值作为边距、边框和内边距。此方法仅适用于可见元素。
示例
您可以尝试运行以下代码,了解如何与 jQuery 中的 position() 方法配合使用
<html> <head> <title>The jQuery Example</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $("div").click(function () { var position = $(this).position(); $("#lresult").html("left position: <span>" + position.left + "</span>."); $("#tresult").html("top position: <span>" + position.top + "</span>."); }); }); </script> <style> div { width:60px; height:60px; margin:5px; float:left; } </style> </head> <body> <p>Click on any square:</p> <span id = "lresult"> </span> <span id = "tresult"> </span> <div style = "background-color:blue;"></div> <div style = "background-color:pink;"></div> <div style = "background-color:#123456;"></div> <div style = "background-color:#f11;"></div> </body> </html>
jQuery offset() 方法
offset( ) 方法获得相对于文档中第一个匹配的元素的当前偏移量(以像素为单位)。
示例
您可以尝试运行以下代码,以了解如何使用 jQuery 中的 offset() 方法
jQuery position() method <html> <head> <title>jQuery offset() method</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script> $(document).ready(function() { $("div").click(function () { var offset = $(this).offset(); $("#lresult").html("left offset: <span>" + offset.left + "</span>."); $("#tresult").html("top offset: <span>" + offset.top + "</span>."); }); }); </script> <style> div { width:60px; height:60px; margin:5px; float:left; } </style> </head> <body> <p>Click on any square:</p> <span id = "lresult"> </span> <span id = "tresult"> </span> <div style = "background-color:blue;"></div> <div style = "background-color:pink;"></div> <div style = "background-color:#123456;"></div> <div style = "background-color:#f11;"></div> </body> </html>
广告