在開發jquery時候經常需要用到定位
有相對父元素定位和相對文檔定位
本文為此總結下
有需要的朋友可以參考下
在開發jquery時候經常需要用到定位這裡概括兩種定位
相對父元素定位 $("#ele")position()進而得到 left = $("#ele")postion()left right = $("#ele")postion()right
相對文檔定位$("#ele")offset() 進而得到 left = $("#ele")offset()left right = $("#ele")offset()right
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20120.html