首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

document.compatMode == "CSS1Compat"

2013-01-26 
document.compatMode CSS1Compatvar width window.innerWidthvar height window.innerHeightif

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)

热点排行