ページに反応する一連の画像があります(つまり、 max-width が 100% に設定されています)。
<div class="exh">
<img src="#" />
</div>
<div class="exh">
<img src="#" />
</div>
<div class="exh">
<img src="#" />
</div>
と
.exh img {
max-width:100%;
}
ウィンドウのサイズが変更された後、ページが読み込まれるたびに画像の高さを取得するにはどうすればよいですか? 以下を使用すると、高さが0になります。
$(".exh img").each(function() {
var $this = $(this);
console.log( $this.height() );
});