jquery – 将每个span标记的div集动态添加到相等的高度

前端之家收集整理的这篇文章主要介绍了jquery – 将每个span标记的div集动态添加到相等的高度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我尝试创建此但未设置,div高度固定为50px和最大跨度
加5

enter image description here

$('section.group').each(function() {
        //alert(($(this).find('.item')).length);
        var hig =50;
        
        var total =($(this).find('.item')).length;
        if(total !== 0){
          //alert(hig/total);
          //$('.item').height(hig/total);
          $(this).each('.item').height(hig/total);
          
        }
      }
    );
section.group{
  height:50px;
  margin-bottom:10px;
  overflow:hidden;
  border:1px solid;
}
.item{
  display:block;
}
.item:nth-child(1) {
    background: #ff0000;
}
.item:nth-child(2) {
    background: #00ff00;
}
.item:nth-child(3) {
    background: #0000ff;
}
.item:nth-child(4) {
    background: #000;
}
.item:nth-child(5) {
    background: #f0f000;
}

猜你在找的HTML相关文章