gpt4 book ai didi

javascript - 如何在 Internet Explorer 8 中获取 innerWidth

转载 作者:IT王子 更新时间:2023-10-29 02:55:05 26 4
gpt4 key购买 nike

在所有最近的浏览器中:

 window.innerWidth // 1920

在 Internet 浏览器 8 中

 window.innerWidth // undefined

在 IE8 中获取此值的最佳方法是什么?

最佳答案

IE9 不支持 innerWidth,您可以改为这样做:

var width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;

以上行将为您提供 IE 以及其他符合标准的浏览器的宽度。


如果您使用 jQuery,$(window).innerWidth() 也会在所有浏览器中为您提供所需的结果。

关于javascript - 如何在 Internet Explorer 8 中获取 innerWidth,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9410088/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com