📜  使用 HTML 检索元素的位置 (X,Y)

📅  最后修改于: 2022-05-13 01:56:21.646000             🧑  作者: Mango

使用 HTML 检索元素的位置 (X,Y)

(X, Y) 的位置是指一个元素在文档左上角的坐标。 X 代表水平位置,Y 代表垂直位置。使用 element.getBoundingClientRect() 属性获取元素的位置。

示例 1:




    
        
            position of an element
        
          
        
        
    
      
    
          
        
        
          
        
          
        

                            

                                

输出:

示例 2:在此示例中,将指针移到文档上以获取元素的位置。




    
        
            position of an element
        
          
        
        
    
      
    
        

Move the mouse over the text

                   
            Position:             

        
                                

输出: