这行得通,但我确信它写得更干净。
<script>
$(document).ready(function(){
$('.col').css({'height':($(document).height())+'px'});
$(window).resize(function() {
$('.col').css({'height':($(document).height())+'px'});
});
}
</script>
我试过没有第一个$('.col').css...
,但它不起作用。所以基本上我想告诉浏览器的是:“当文档准备好时,调整这个 div 的大小,并在每次高度变化时继续调整它的大小”。