2010-04-18 97 views

回答

2

像这样:

$(document.elementFromPoint(x, y)) 
0

只要你知道确切的坐标相对于文档:

function getElsAt(top, left){return $("body").find("*").filter(function(){return $(this).offset().top == top && $(this).offset().left == left})} 

对方回答停在第一个覆盖。

相关问题