当前位置: 代码迷 >> HTML/CSS >> document.compatMode == "CSS1Compat"
  详细解决方案

document.compatMode == "CSS1Compat"

热度:95   发布时间:2013-01-26 13:47:03.0
document.compatMode == "CSS1Compat"
var width = window.innerWidth;
var height = window.innerHeight;
if(typeof width != "Number"){  // IE
    width = document.compatMode == "CSS1Compat" ? document.documentElement.clientWidth : document.body.clientWidth;
    height = document.compatMode == "CSS1Compat" ? document.documentElement.clientHeight : document.body.clientHeight;
}
alert(width + "-------" + height)

  相关解决方案