我不是程序员,所以我相信这可以很容易地回答:
如何将此 jQuery 脚本更改为:
- 将新高度除以 2
和/或
只计算 div 内第一个元素的高度?
$( document ).ready(function() { $( "#left-sidebar-inner" ).each(function() { var newHeight = 0, $this = $( this ); $.each( $this.children(), function() { newHeight += $( this ).height(); }); $this.height( newHeight ); }); });
两个答案都会很棒!提前致谢!