我需要页面的内容部分来占据页眉和页脚留下的内容。虽然页眉和页脚工作正常,但我的内容占用了大约 42 像素的屏幕。打印 $(window).height() 的高度时,它给了我 221 像素。打印 $(document).height() 的高度时,它给了我 300 像素。这还可以吗???
我在 Windows 8 下的 Google Chrome、IE 10 上都试过了。
这是我的代码:
<!DOCTYPE html>
<html>
<head>
<title>Sometitle</title>
<!-- Setting viewport to match the device width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- JQuery libs imported -->
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var wnw = parseFloat($(window).width());
var wnh = parseFloat($(window).height());
alert(wnw + " " + wnh);
var scw = parseFloat($(document).width());
var sch = parseFloat($(document).height());
alert(scw + " " + sch);
});
</script>
</head>
</head>
<body>
<div id="firstpage" data-role="page" data-theme="a">
<div data-role="header" data-position="fixed">
<h1>Sample</h1>
</div>
<div data-role="content" style="background: url('./images/someimg.jpg'); background-size: 100% 100%;">
</div>
<div data-role="footer" data-position="fixed">
<h1>Footer</h1>
</div>
</div>
</body>
</html>
我看过很多关于相关问题的帖子,其中一些类被分配了 100% 的高度或最小高度,但似乎没有一个对我有用。
谢谢。