4

多年来,我一直在使用以下代码来检测浏览器客户区的宽度,并且它在所有浏览器(包括 FF、Safari 和各种版本的 IE)中都能 100% 运行。但是,现在当我切换到具有宽屏分辨率 (1280x800) 的新显示器时,此代码在 IE8 上失败。它报告客户端宽度为 1024 !!!???

任何想法如何获得正确的客户区宽度?

function getClientWidth() {
  var v=0,d=document,w=window;
  if((!d.compatMode || d.compatMode == 'CSS1Compat') && !w.opera && d.documentElement && d.documentElement.clientWidth)
    {v=d.documentElement.clientWidth;}
  else if(d.body && d.body.clientWidth)
    {v=d.body.clientWidth;}
  else if(xDef(w.innerWidth,w.innerHeight,d.height)) {
    v=w.innerWidth;
    if(d.height>w.innerHeight) v-=16;
  }
  return v;
}
4

2 回答 2

5

我前段时间使用的非 jquery 代码:

function detectBrowserSize() {
    var myWidth = 0, myHeight = 0;
    if (typeof (window.innerWidth) == 'number') {
        //Non-IE
        myWidth = window.innerWidth;
        myHeight = window.innerHeight;
    } else if (document.documentElement && (document.documentElement.clientWidth ||   document.documentElement.clientHeight)) {
        //IE 6+ in 'standards compliant mode'
        myWidth = document.documentElement.clientWidth;
        myHeight = document.documentElement.clientHeight;
    } else if (document.body && (document.body.clientWidth || document.body.clientHeight)) {
        //IE 4 compatible
        myWidth = document.body.clientWidth;
        myHeight = document.body.clientHeight;
    }
    alert(myWidth + ' - ' + myHeight)
}
于 2011-06-20T08:54:47.397 回答
0

代码中检查window.opera并减去 16 个像素的位令人担忧。comp.lang.javascript 的常见问题解答对此有一个不错的实现

于 2009-10-19T08:47:49.023 回答