我正在尝试根据浏览器的宽度更改containerHeight变量。这是我到目前为止的内容,但是即使阅读了文档,我也不确定如何继续。有人可以帮我吗?

var containerHeight = $('#project-container').outerHeight();
window.onresize = containerHeight;
$('#project-wrapper.activated').css('max-height', containerHeight);

最佳答案

在末尾添加“ px”。或“ em”,无论您使用什么

$(window).on('resize', function() {
    var containerHeight = $('#project-container').outerHeight();
    $('#project-wrapper.activated').css('max-height', containerHeight + 'px');
});

10-08 16:20