element.clientWidth //元素的實際寬度,不算邊框
element.clientHeight //元素的實際高度,不算邊框
element.offsetWidth //元素的實際寬度,加上邊框
element.offsetHeight //元素的實際高度,加上邊框
element.scrollWidth //這個說法很多,我測試下來應該是元素實際寬度-滾動條的寬度
element.scrollHeight //這個說法很多,我測試下來應該是元素實際高度-滾動條的高度
element.offsetLeft //相對於父對象的距離,ie下如果position設為relative,則是相對於window的距離
element.offsetTop //相對於父對象的距離,ie下如果position設為relative,則是相對於window的距離
window.screenLeft //當前窗口距離屏幕距離 only for IE
window.screenX //當前窗口距離屏幕距離 not for IE
window.innerWidth //當前窗口大小(內)not for IE
window.outerWidth //當前窗口大小(外)not for IE
window.screen.width //當前屏幕分辨率
window.screen.availWidth //當前屏幕可用分辨率