我正在构建一个从数据库中获取和显示数据的动态表,表的结构如下所示
<table class="table" id="report">
<thead>
<tr>
<th>Title</th>
<th>Skill</th>
<th>Area</th>
</tr>
</thead>
<tbody>
<?
$sql="SELECT * from tablename ";
$result= mysqli_query($con, $sql);
if(mysqli_num_rows($result)>0) {
while($row = mysqli_fetch_assoc($result)) {
<tr>
<td><? echo $title; ?></td>
<td><? echo $skill; ?></td>
<td><? echo $area; ?></td>
</tr>
}
}
</tbody>
</table>
我希望当用户单击标题时,视图应该展开,然后在另一次单击时它应该折叠。
我在jsfiddle中构建了一个静态表,它工作正常,但是当我尝试将代码与上表合并时,它不起作用。谁能告诉我哪里出错了?