我需要页面的内容部分来占用页眉和页脚留下的内容。虽然页眉和页脚工作得很好,但我的内容却占据了42 px的屏幕。当打印$(window).height()的高度时,它给了我221 px。当打印$(document).height()的高度时,它给了我300 px。这甚至可能吗?
我已经在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%,但似乎没有一个适合我。
THX。