0

私はプログラマーではないので、これはかなり簡単に答えられると確信しています。

この jQuery スクリプトを次のいずれかに変更するにはどうすればよいですか。

  1. 新しい高さを 2 で割る

および/または

  1. div 内の最初の要素の高さだけを計算しますか?

    $( document ).ready(function() {
        $( "#left-sidebar-inner" ).each(function() {
            var newHeight = 0, $this = $( this );
    
            $.each( $this.children(), function() {
                newHeight += $( this ).height();
            });
    
            $this.height( newHeight );
        });
    });
    

両方の答えは素晴らしいでしょう!前もって感謝します!

4

1 に答える 1

0
$(document).ready(function () {
    $("#left-sidebar-inner").each(function () {
        var newHeight = 0,
        $this = $(this);
        $.each($this.children(), function () {
            newHeight += $(this).height();
        });
        $this.height(Math.round( newHeight / 2) );
    });
});

対応するhtmlを投稿する必要がある2番目の部分について何を意味するのかわからない

于 2013-01-11T21:55:51.267 に答える