我正在使用 php 创建具有动态名称的 div,例如:
echo "<div class=\"".$row['country']."\">"
因此,它将首先创建一系列 div,例如...
<div class="America">
//stuff goes in here
</div>
<div class="Germany">
//stuff goes in here
</div>
<div class="Singapore">
//stuff goes in here
</div>
但是稍后在“Germany”div 已经创建后的代码中,我将对另一个表进行另一个 mysql 查询,并且我想访问“Germany”类并在其中添加内容。然后它变成了......
<div class="Germany">
<p> Germany has x number of people </p>
<p> The most popular car in Germany is x </p>
</div>
我知道 Jquery 有 append() 函数。PHP中是否有类似的东西我可以访问已经创建的div并向其中添加内容?
注意:所有这些都在一个 php 文件中,该文件会在页面加载时加载所有内容。