使用jquery获取所有浏览器的宽度中心

时间:2009-12-25 12:28:30

标签: javascript jquery window center

我有以下代码来获得宽度中心

  function alertSize() {
     var myWidth = 0;
    if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    } else if( document.documentElement && ( document.documentElement.clientWidth ||        document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
   } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
   //IE 4 compatible
   myWidth = document.body.clientWidth;
  }

return myWidth/2;
}

但它没有返回正确的屏幕中心。

我需要得到正确的中心水平。

谢谢

2 个答案:

答案 0 :(得分:3)

试试这个:

function alertSize() {
 return $(window).width()/2
}

jQuery已经为你完成了所有额外的工作。

答案 1 :(得分:0)