获取页面某一元素的绝对X,Y坐标
var
X = $(
'#ElementID'
).offset().top;
Y = $(
).offset().left;
获取相对(父元素)位置:
).position().top;
).position().left;