我有如下内容:
$grabarticles = $db->prepare("
SELECT title, message
FROM articles
");
$grabarticles->execute();
foreach($grabarticles as $articles) {
echo $articles["title"];
//when a user clicks the text above, reveal the below
echo "<div id='article'><br/><br/>";
echo " ".$articles["message"];
echo "</div><br/><br/>";
//when a user clicks the $articles["title"] again, it then collapses
}
我不太精通 Javascript,不知道,但是我可以做些什么来使$articles["title"]
可点击,并onclick
在下面展开以显示 的内容$articles["message"]
,但也可以与另一个可逆onclick
?这是一张图片来说明:
我希望每个都<div>
与另一个分开,所以如果我通过单击打开#1 $article["title"] //1
,然后通过单击相应的文本打开#2,然后我可以通过重新单击它来关闭#1,而不会干扰#2。