纯Javascript获取各种屏幕的宽度和高度

读取基本宽高值:

网页可见区域宽: document.body.clientWidth
网页可见区域高: document.body.clientHeight
网页可见区域宽: document.body.offsetWidth (包括边线的宽)
网页可见区域高: document.body.offsetHeight (包括边线的高)
网页正文全文宽: document.body.scrollWidth
网页正文全文高: document.body.scrollHeight
网页被卷去的高: document.body.scrollTop
网页被卷去的左: document.body.scrollLeft
网页正文部分上: window.screenTop
网页正文部分左: window.screenLeft
屏幕分辨率的高: window.screen.height
屏幕分辨率的宽: window.screen.width
屏幕可用工作区高度: window.screen.availHeight
屏幕可用工作区宽度: window.screen.availWidth

以上值不能完全读取浏览器窗口的实际尺寸,尤其是高度,以下是更准确的方案:

function findDimensions() { //函数:获取尺寸
  var winWidth = 0, winHeight = 0;
  // 获取窗口宽度
  if (window.innerWidth)
    winWidth = window.innerWidth;
  else if ((document.body) && (document.body.clientWidth))
    winWidth = document.body.clientWidth;
  // 获取窗口高度
  if (window.innerHeight)
    winHeight = window.innerHeight;
  else if ((document.body) && (document.body.clientHeight))
    winHeight = document.body.clientHeight;

  // 通过深入Document内部对body进行检测,获取窗口大小
  if (document.documentElement && document.documentElement.clientHeight && document.documentElement.clientWidth) {
    winHeight = document.documentElement.clientHeight;
    winWidth = document.documentElement.clientWidth;
  }
  // 结果输出至浮动框
  document.getElementById("info").innerHTML = winWidth + " " + winHeight;
}

参考来源:

  • http://www.cnblogs.com/xiaopin/archive/2012/03/26/2418152.html
  • http://www.nowamagic.net/javascript/js_GetBrowserSize.php

你可能感兴趣的:(JavaScript,width,height)