本文介绍了Internet Explorer innerHeight的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在Internet Explorer中获取window.innerHeight。谢谢。
How can you get the window.innerHeight in internet explorer. Thanks.
推荐答案
window.getWinSize= function(){
if(window.innerWidth!= undefined){
return [window.innerWidth, window.innerHeight];
}
else{
var B= document.body,
D= document.documentElement;
return [Math.max(D.clientWidth, B.clientWidth),
Math.max(D.clientHeight, B.clientHeight)];
}
}
这篇关于Internet Explorer innerHeight的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!