问题遇到的现象和发生背景
上面这是源码,实际展示效果如下:
var maxheight = 0;
for(var i = 0;i<$(".ceshi").length;i++){
if(maxheight <= $(".ceshi").eq(i).height()){
maxheight = $(".ceshi").eq(i).height();
}
}
$(".ceshi").css('height',parseInt(maxheight)+'px');
上面是JS代码,求指导该怎么去优化然后达到我想要的效果。