0

所以基本上我想给用户的评论上色,让它看起来清晰和分开。评论来自数据库,php 代码将在 HTML 页面中生成评论。我也在使用 CSS 和 Jquery。我试过了,但我的代码不起作用,知道吗?

HTML/PHP:

    <? 
for($i=0;$i<mysql_num_rows($comment);++$i)
{
$row = mysql_fetch_array($comment);
?>  
        <div class = "comment">
        <p> <? echo $row['c_content']; ?>  by <? echo $row['c_name']; ?> </p>
        </div>
        <?}?>

CSS:

.comment
{
    background-color:#fff;     
}

.alt
{
    background-color:#ccc;
}

查询:

$(document).ready(function(){
$(".comment:odd").addClass('alt');
});

如您所见,我希望“奇数”评论类有颜色#CCC,甚至有#FFF ...请帮助

4

1 回答 1

2

这里不需要使用 jQuery。使用 CSS:

.comment:nth-child(even) {
    background-color: #fff;
}

.comment:nth-child(odd) {
    background-color: #ccc;
}

无关,但值得注意的是,除非您同时使用关联键和数字键来访问您的 mysql 结果,否则您应该养成使用mysql_fetch_assoc()代替的习惯,mysql_fetch_array()否则您总是使用两倍的内存。

于 2012-04-28T03:39:08.543 回答