window.innerHeight ie8 alternative

后端 未结 5 1122
再見小時候
再見小時候 2020-12-08 07:53

I have some calculations that rely on window.innerHeight. But as I have found out this is not available in any IE before IE9. All the other options I have look

5条回答
  •  时光取名叫无心
    2020-12-08 08:28

    Use following in your document.ready and define innerHeight explicitly.

    window.innerHeight = window.innerHeight || document.documentElement.clientHeight
    

提交回复
热议问题