gpt4 book ai didi

responsive-design - 为什么手机上的document.documentElement.clientWidth是980px

转载 作者:行者123 更新时间:2023-12-04 02:19:29 25 4
gpt4 key购买 nike

我想了解 documentElement.clientWidthwindow.innerWidth以及它们在各种设备上的行为。我用这个http://67.20.67.232/test.html要测试的页面,令我困惑的一件事是在我的 Nexus 6 documentElement.clientWidth 上是980,我用开发工具的手机模拟试了一下,结果是一样的。那为什么是980?而且,在移动设备上,可以window.innerWidth被认为是视口(viewport)宽度?页面的 HTML 如下:

<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script type="text/javascript">
(function loop(){
requestAnimationFrame(function(){
$('#doc').html( document.documentElement.clientWidth );
$('#win').html( window.innerWidth );
$('#d1').html($('#w div:eq(0)').width());
$('#d2').html($('#w div:eq(2)').width());
loop();
})
})();
</script>
</head>
<body>
<div id="w" style="margin-top:50px;margin-left:50px;font-size:50px">
<div style="float:left">client:<span id="doc"></span></div>
<div style="clear:both"></div>
<div style="float:left">window:<span id="win"></span></div>
<div style="clear:both"></div>
<div id="d1"></div>
<div id="d2"></div>

</div>
</body>
</html>

最佳答案

在 head 部分中包含 viewport 元标记:

    <meta name="viewport" content="width=device-width, initial-scale=1">

http://developer.mozilla.org/en/docs/Mozilla/Mobile/Viewport_meta_tag

否则大多数移动设备将假定它是一个桌面站点并模拟通常为 980 像素的更大视口(viewport)。

关于responsive-design - 为什么手机上的document.documentElement.clientWidth是980px,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31767904/

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