关键函数:

.map()

map()把每个元素通过函数传递到当前匹配集合中,生成包含返回值的新的jQuery对象。

function ResizeAll(){
var $box = $('.box');
$box.css({
	"height": "auto"
});
$box.height(Math.max.apply(null, $box.map(function () {
	return $(this).height();
})));
}

创建好函数后在指定的事件下触发即可。
如下:

// doc ready 时
$(function(){
ResizeAll();
});
// window load 及 resize 时
$(window).on("load resize",function(){
ResizeAll();
});