我有一個foreach循環循環並顯示數組中的所有數據沒有問題,但我有一些jQuery我想應用到結果,但jQuery只適用於第一部分數據被顯示。我不確定爲什麼,如果有人能夠幫助那會很好。PHP與foreach問題與jQuery
$count_limit = 0;
$limit = 5;
foreach ($feeds->data as $item) {
extract((array) $item);
if($count_limit++ < $limit){
?>
<div id="news_post">
<? $title_str = str_replace('–', '–', $title) ?>
<p class="news_title"><a href="<?php echo $link; ?>" target="_blank"><?php echo $title_str; ?></a> <a href="#" class="read">read...</a></p>
<div class="news_desc"><?php echo "$description" ?></div>
</div>
<? }
else {
break;
}
$(this).next('.news_desc').hide();
$(this).next('a.read').click(function() {
$(this).next('.news_desc').toggle();
});
我們可以看到JQuery腳本嗎? – 2011-03-25 01:27:42
' 2011-03-25 01:30:27