js获取各种浏览器窗口可视部分大小(可视部分不包含工具栏、标签栏等)

 js获取各种浏览器窗口可视部分大小(可视部分不包含工具栏、标签栏等)
function getViewportSize(w){
  w= w || window;
  //除了IE8以及更早版本外,其它浏览器都能用
  if(w.innerWidth != null){ return { w:w.innerWidth, h:w.innerHeight } };

  //对标准模式下的IE或任何浏览器
  var d=w.document;
  if(document.compatMode == "CSS1Compat"){
    return { w:d.documentElement.clientWidth, 
             h:d.documentElement.clientHeight }
  }

  //对怪异模式下的浏览器
  return { w:d.body.clientWidth , h:d.body.clientHeight }

}
getViewportSize()


你可能感兴趣的:(Web前端技术)