document.compatMode == "CSS1Compat"
[javascript]var width = window.innerWidth;var height = window.innerHeight;if(typeof width != "Number"){ // IEwidth = document.compatMode == "CSS1Compat" ? document.documentElement.clientWidth : document.body.clientWidth;height = document.compatMode == "CSS1Compat" ? document.documentElement.clientHeight : document.body.clientHeight;}alert(width + "-------" + height)
补充:web前端 , JavaScript ,