我目前有2個表,頂部和底部。對於頂部,我會從我的SQL數據庫中調出數據。至於底部,數據來自與頂部表相同的數據庫,但顯示不同的字段。這些字段在我的SQL數據庫中都在同一行。顯示特定行的SQL數據onclick
基本上,單擊頂部表格上的任何行時,底部表格將顯示更多信息,這些信息也位於SQL數據庫的同一行內。我不知道如何顯示特定行的數據,現在,當我單擊頂部表上的任何行時,它將顯示SQL中的所有行。
代碼表:
<table id="table_id">
<thead>
<tr>
<th>Name</th>
<th>Address</th>
</tr>
</thead>
<tbody>
<?php
while ($row = mysql_fetch_array($results)) {
?>
<tr data-details="c01" class="itemDetails">
<td><?=$row['name']?></td>
<td><?=$row['address']?></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
<br /><br />
<div>
<table border=1 id="c01" class="aside hidden">
<thead>
<tr>
<th>Product</th>
<th>Quantity</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<?php
while ($row = mysql_fetch_array($results2)) {
?>
<tr>
<td><?=$row['product']?></td>
<td><?=$row['quantity']?></td>
<td><?=$row['price']?></td>
</tr>
<?php
}
?>
</tbody>
</table>
代碼的jQuery:
<script>
$(document).ready(function() {
$('table.hidden').hide();
$('tr.itemDetails').click(function() {
var id = $(this).data('details');
$('table.hidden').hide();
$('#'+id).show();
});
});
</script>
嗨,感謝您的回覆!我得到了這個工作,但第一行仍然顯示,當我點擊第二或第三行。後面的行將出現在第一行的下方,但不會像第一行那樣保留在那裏。 – Wolf06
如果我正確地理解了你,你不希望顯示第一行?然後刪除這個$('table.hidden tr:first-child')。css('display','table-row');代碼行。 – Aleksandrs