我想根据文档height
在CSS中使用正文height
。
此代码无效:
$(document).ready(function() {
$("body").css({"height": $(document).height() * 4 }, 300);
});
答案 0 :(得分:0)
$(document).ready(function() {
var winHeight = $(window).height() * 4;
$("body").css({"height": winHeight + "px" });
});