jQueryでのトラバースに問題があります。うまくいけば簡単です。しかし、私は頭を叩いています。 jQueryのjQueryトラバース.next().show()
<div class='news_box'>
<img src='".NEWS.$n[image]."' alt='$n[title] Image' class='news_img' />
<div class='news_text'>
<h3>$n[title] // ".date("d.m.Y", strtotime($n[created_on]))." // ".date("H.i", strtotime($n[created_on]))."</h3>
<p>".substr(strip_tags($n[description]), 0, 90)."... <span title='Read More On $n[title]' class='more'>Read More</span></p>
</div>
<p class='clear'></p>
<div class='full_item'>
$n[description]
</div>
</div><!--close news_box-->
を
:.full_item
ため
$(".news_box span.more").click(function(){
$(this).next(".full_item").show();
});
CSSがdisplay:none
に設定されている目的は、div要素を表示することです私は.find()
、.next()
、.closest()
を試してみました...そして灘
HTMLました:スパンのクリック時のfull_item .more
ありがとうance!
'はconsole.log(この)'あなたが – Jack