1

我希望能够在加载时不显示评论 div,当单击评论时,我希望它打开评论 div。

我该怎么做呢?我环顾四周,但是...我从阅读有关何时付诸行动中得到的所有信息仅适用于一个 div,该 div 观察每个帖子的内容 div 结果和单独的评论,如您在代码中看到的那样。

<?

$data = mysql_query("SELECT `i`.*, `a`.* FROM `Wall` `i` LEFT JOIN `WallComments` `a` ON (`i`.`ID` = `a`.`Comments_ID`) WHERE `i`.`Username` = '{$view}'");

while($Comments = mysql_fetch_array($data)){ 

$walldate = gmdate('g:i a j F, Y', ($Comments['WallDate']));
$postdate = gmdate('g:i a j F, Y', ($Comments['Date']));

        echo
        "<div id='Wall'><a class='menuLink' href='Profile.php?view={$Comments['MessageBy']}' onclick='return false;'>{$Comments['MessageBy']}</a> - On: {$walldate}<br />Wrote: {$Comments['Message']}</div><br /><br />

<div id='Wall'><br />Comments<br /><br />{$Comments['CommentUsername']} Commented - On: {$postdate}<br />Wrote: {$Comments['Post']}</div><hr><br />

        ";
      }
      ?>

每次用户发表帖子时,它都会在数据库中插入新行,并在评论中插入相同的行,所以我需要它来自动制作 div 之类的东西,而不是让 div id=1 div id =2 之类的东西,这就是我得到的我在网上看到的一切。

谁能帮我?

4

1 回答 1

1

最初隐藏 div:

<div id='Wall' style="visibility: hidden;">

使用 JavaScript 让 div 出现:

<button onclick="document.getElementById('Wall').style.visibility='visible';">
Show
</button>

您可以在锚标记中包含注释:

<a href="#" onclick="document.getElementById('Wall').style.visibility='visible';">
Comments here
</a>
于 2012-07-01T16:00:23.267 回答