jQueryでのトラバースに問題があります..うまくいけば簡単なものです..しかし、私は頭をぶつけています。私は試しました.closest()、、.next()...find()そしてnada
HTML:
<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-->
Jクエリ:
$(".news_box span.more").click(function(){
    $(this).next(".full_item").show();
});
CSS.full_itemはに設定されていdisplay:none
ます目的は、スパンのクリック時に div: full_item を表示することです.more
前もって感謝します!