Window Size

How can I get windowWidth, windowHeight, pageWidth, pageHeight, screenWidth, screenHeight, pageX, pageY, screenX, screenY which will work in all major browsers?

getSize

Element Size

每个HTML元素都有下列属性:

offsetWidth clientWidth scrollWidth
offsetHeight clientHeight scrollHeight
offsetLeft clientLeft scrollLeft
offsetTop clientTop scrollTop
  1. clientHeightclientWidth 用于描述元素内尺寸,是指【元素内容+内边距】大小,不包括边框(IE下实际包括)、外边距、滚动条部分

  2. offsetHeightoffsetWidth用于描述元素外尺寸,是指【元素内容+内边距+边框】,不包括外边距和滚动条部分

  3. clientTopclientLeft 返回内边距的边缘和边框的外边缘之间的水平和垂直距离,也就是【左、上边框宽度】

  4. offsetTopoffsetLeft 表示该元素的左上角(边框外边缘)与已定位的父容器(offsetParent对象)左上角的距离

  5. offsetParent对象是指元素最近的定位(relative,absolute)祖先元素,递归上溯,如果没有祖先元素是定位的话,返回null

  6. scrollWidthscrollHeight 是元素的【内容区域+内边距+溢出尺寸】,当内容正好和内容区域匹配没有溢出时,这些属性与 clientWidthclientHeight 相等

  7. scrollLeftscrollTop 是指【元素滚动条位置】,它们是可写