<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=640,user-scalable=no" />
<title>demo</title>
</head>
<body>
<script>
(function () {
document.addEventListener('DOMContentLoaded', function () {
var html = document.documentElement;
var windowWidth = html.clientWidth;
alert('windowWidth: ' + windowWidth);
}, false);
})();
</script>
</body>
</html>
代码如上。我看网上说的是meta的width是设置手机浏览器的宽度,为什么这里alert的是512而不是640(在chrome下用iphone5)?
30秒到达战场
相关分类