我发现这个片段给了我一个对象的最大高度,它在除了 ie8 之外的所有东西上都很好用。有什么我可以改变的东西可以让它正常工作吗?
function thisHeight(){
return $(this).height();
}
$("#new-deals ul.centerSpace").height(function() {
var dealNameHeight = Math.max.apply(Math, $(this).find(".deal-name").map(thisHeight));
$(".deal-name").css({height: dealNameHeight});
});