How Do I Get innerWidth in Internet explorer 8

前端 未结 8 1095
一整个雨季
一整个雨季 2020-12-08 00:06

In all recent browser:

 window.innerWidth // 1920

In Internet explorer 8

 window.innerWidth // undefined

8条回答
  •  眼角桃花
    2020-12-08 00:41

    You can get this information from IE 8 with

    document.documentElement.clientWidth
    

    Be advised that this value will not be exactly the same that IE 9 returns for window.innerWidth.

提交回复
热议问题