您的位置:首页 > Web前端 > CSS

document.compatMode == "CSS1Compat"

2013-01-21 14:51 387 查看
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)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: