当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery position()用法及代码示例


position()方法是jQuery中的一种内置方法,用于查找第一个匹配元素相对于其在DOM树中其父元素的位置。

用法:

$(selector).position()

参数:此方法不包含任何参数。


返回值:此方法返回第一个匹配元素的位置。

下面的示例说明了jQuery中的position()方法:

例:

<!DOCTYPE html> 
<html> 
   <head> 
       <title>The position Method</title> 
      <script src= 
      "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
      </script> 
        
      <!-- jQuery code to show the woirking of this method -->
      <script> 
         $(document).ready(function(){ 
             $("button").click(function(){ 
                 var x = $("p").position(); 
                 alert("Top position: " + x.top); 
             }); 
         }); 
      </script> 
      <style> 
         div { 
             width: 350px; 
             height: 100px; 
             font-weight: bold; 
             padding:20px; 
             font-size: 25px; 
             border: 2px solid green; 
         } 
      </style> 
   </head> 
   <body> 
      <div> 
         <p>GeeksforGeeks.</p> 
           
         <!-- Click on this button  -->
         <button>Click Here!</button> 
      </div> 
   </body> 
</html>

输出:
在单击按钮之前:

单击按钮后:

相关文章:



相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery | position() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。