window.innerHeight 在ie8中获取不到
时间:2020-07-27 23:47:39
收藏:0
阅读:94
window.innerHeight
Chrome浏览器
--------------------------------------------------------------------------------------------
IE8
下面代码适用所有浏览器
var w = window.innerWidth || document.documentElement.clientWidth ;
var w = window.innerHeight || document.documentElement.clientHeight ;
document.body.clientHeight
获取的是body的高度
评论(0)