-3
我已經做了這個JavaScript代碼,但我想我重複我的自我,所以任何建議,使此代碼更好和優化。HTML Div等高
var countHeight = [];
$('.box').each(function() {
countHeight.push($(this).outerHeight());
});
var maxValueInArray = Math.max.apply(Math, countHeight);
$('.box').each(function() {
$(this).css('height', maxValueInArray+'px');
});
什麼是你的問題,具體。 –
http://stackoverflow.com/questions/4795318/map-get-confusion/4795529#4795529這可能有幫助 – jvecsei
代碼沒有問題..只需要更多的優化版本 –