我的显示结果是 宽是1366 高是8,高度是不是有问题。。。
我也遇见同样的问题
应该是你的实际内容高度是多少就是多少了
<script type="text/javascript">
var w=document.documentElement.scrollWidth || document.body.scrollWidth;
document.write("width:" + w +"<br>");
var h=document.documentElement.scrollHeight || document.body.scrollHeight;
document.write("height:" + h +"<br>");
</script>如果你这样写的话,高度应该就会有所改变