高さを取得する必要があるdivがあります。それはdivの中にあり、その中にいくつかのdivがあります。それらは両方とも同様のdiv構造内にあります。私は自分の問題とこれまでの問題を説明するためにjsフィドルを作成しました。http://jsfiddle.net/K3dx5/
したがって、基本的に、リンクがクリックされたときの最初のdivの高さ(400px)と、2番目のリンク(200px)を取得する必要があります。
<div class="wrapper"> <div class="one"> <!--I need to get the height of this div --> <div class="NotThisone"> <div class="No"> <a class="anchor">ONE</a> </div> </div> </div> <div class="two"> <!--I need to get the height of this div --> <div class="NotThistwo"> <div class="No"> <a class="anchor">TWO</a> </div> </div> </div>
</ p>
ありがとうございました