同じ div クラスが複数回表示されるページ内の div とテキストの幅と幅の差を計算しようとしています。
HTML:
<div class="post_content">
<div class="container">
<div class="title-holder">
<h2><a href="link.html" class="widget-title">Crossword Book</a></h2>
</div>
</div>
<div class="container">
<div class="title-holder">
<h2><a href="link.html" class="widget-title">Crossword Bookstore Ltd. – Elgin Road</a></h2>
</div>
</div>
</div>
CSS:
div.container{
width: 130px;
}
div.title-holder {
width: 130px;
height:20px;
text-align:center;
background: silver;
overflow:hidden;
position: relative;
}
div.title-holder a {
position: relative;
white-space:nowrap;
left: 0px;
}
div.image{
background: brown;
width: 100%;
height: 100px;
}
次のスクリプトは、最初の div の結果を正しく出力し、同じ結果を繰り返します。次のdivに移動して次の結果を出すことはありません。
$("div.title-holder").each(function(){
var m = $(this).width();
var n = $("div.title-holder h2 a.widget-title").width();
var o = m - n;
alert ("title: " + m + " text: " + n + " diff: " + o);
});
出力は
First Alert: title: 130 text: 108 diff: 22
Second Alert: title: 130 text: 108 diff: 22
私が達成しようとしているのは
First Alert: title: 130 text: 108 diff: 22
Second Alert: title: 130 text: 258 diff: -128