现在的位置: 首页 > 综合 > 正文

[转]js获取table中td的绝对坐标

2012年12月09日 ⁄ 综合 ⁄ 共 674字 ⁄ 字号 评论关闭

方法1:

function    getAbsPoint(e)   
{   
     var    x    =    e.offsetLeft,    y    =    e.offsetTop;   
     while(e=e.offsetParent)
     {
        x    +=    e.offsetLeft;   
        y    +=    e.offsetTop;
     }
     alert("x:"+x+","+"y:"+y);   
}  

方法2:

   function    getAbsPoint(obj)   
   {   
      var    x,y;   
      oRect    =    obj.getBoundingClientRect();   
     x=oRect.left   
     y=oRect.top   
     alert("("+x+","+y+")")   
   }  

JS中获得窗口属性的方法   
    
   1。获得屏幕的分辨率:   
   screen.width   
   screen.height   
    
   2。获得窗口大小:   
   document.body.clientWidth   
   document.body.clientHeight   
    
   3。获得窗口大小(包含Border、Scroll等元素)   
   document.body.offsetWidth   
   document.body.offsetHeight  

Image

为找Td坐标苦恼了很久,终于找到,方法不错,哈哈

抱歉!评论已关闭.