0

我有以下代码,而不是 height(300),height() = document height-100

$(".bar").height(XXX);
4

2 回答 2

3
var DocHeight = $(document).height();
$(".bar").height(DocHeight-100);
于 2012-06-28T23:39:22.410 回答
1

试试这个:

var h = $(window).height() - 100;
$(".bar").height(h);
于 2012-06-28T23:39:29.310 回答