解决方法
你可以使用jQuery:
Boxes = $('.well'); maxHeight = Math.max.apply( Math,Boxes.map(function() { return $(this).height(); }).get()); Boxes.height(maxHeight);
这里有一个例子:http://jsfiddle.net/DVnZ6/3/