How Do I Get innerWidth in Internet explorer 8

前端 未结 8 1112
一整个雨季
一整个雨季 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

    Please note: .innerWidth method is not applicable to window and document objects; for these, use .width() instead.

    jquery api documentation for .innerwidth()

提交回复
热议问题