3

同じ 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. &ndash; 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
4

3 に答える 3

7

次の値:

var n = $("div.title-holder h2 a.widget-title").width();

常に同じになります (そのセレクタ クエリの最初の結果)。あなたがする必要があります:

var n = $(this).find("a.widget-title").width();

またはより具体的に:

var n = $("div.title-holder").children("h2").children("a.widget-title").width();
于 2012-06-24T18:08:13.790 に答える
2

次のように使用します。

var n = $(this).find("h2 a.widget-title").width();
于 2012-06-24T18:07:31.983 に答える
0

jsBin デモ

$("div.title-holder").each(function(){    
  var m = $(this).width();
  var n = $("h2 a.widget-title", this).width();
  var o = m - n;

  alert("title: " + m + " text: " + n + " diff: " + o);    

}); 
于 2012-06-24T18:17:10.100 に答える