window.innerHeight 在ie8中获取不到

window.innerHeight 

Chrome浏览器

--------------------------------------------------------------------------------------------

 IE8

下面代码适用所有浏览器

var w = window.innerWidth || document.documentElement.clientWidth ;
var w = window.innerHeight || document.documentElement.clientHeight ;
document.body.clientHeight
获取的是body的高度

猜你喜欢

转载自www.cnblogs.com/hill-foryou/p/13387046.html