我正在尝试重新计算窗口调整大小时元素的高度。该代码可以在页面加载时成功计算出必要的高度,而在调整窗口大小时不会成功。
目标是调整框的大小,以容纳在缩小窗口时分成两行或三行的文本字符串。
function frontNewsResize() {
var highestBox = 0;
jQuery('.front-news-wrapper .front-news-article .article-title-container').each(function() {
if (jQuery(this).height() > highestBox) {
highestBox = jQuery(this).height();
}
});
jQuery('.front-news-wrapper .front-news-article .article-title-container').height(highestBox);
}
jQuery(document).ready(frontNewsResize);
jQuery(window).on('resize', frontNewsResize);