我从Chrome页面首次加载(不是在缓存中)到重新加载(从缓存中)时获取window.innerWidth的值不一致。任何想法为什么。
听到我的简单HTML文件:
<html>
<body>
<script>
alert(window.innerHeight)
</script>
</body>
</html>
如果我在Incognito窗口中运行它(为了确保它不被缓存),我得到一个值x,然后当我刷新值时总是x + 40.
发生了什么事?