我的任务是调整 div 相对于其他 div 的高度。但它不起作用。我的代码是
$(document).ready(function () {
var heightWrapper = $('#contentWrapper').height();
$('#leftNavPanel').css('min-height', heightWrapper);
$('#leftNavPanelSignArrow').css('min-height', heightWrapper);
});