在 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-->
查询:
$(".news_box span.more").click(function(){
$(this).next(".full_item").show();
});
CSS for.full_item
设置为display:none
目的是显示 div: full_item 点击跨度.more
提前致谢!