1

我有一个显示 SQL 结果的表,但是我希望该表显示某些结果,并在单击时在 div 标记中的表下方显示更多。到目前为止,我有这段代码显示“标题”和“电子邮件”以及第三列,它将触发 JS 函数并在 div 标签中显示“详细信息”...如何使用 JavaScript 显示特定详细信息并隐藏单击第二行详细信息并替换第一行时的那些详细信息?

while($rows=mysql_fetch_array($result)){
    ?>
    <tr>
        <td><?php echo $rows['title']; ?></td>
        <td><?php echo $rows['email']; ?></td>
        <td><a href="#" onClick="moreDetails();">More details...</a></td>
    </tr>

编辑:在收到评论后,这是我的表格的整个代码,其中包含 id 为“详细信息”的 div 元素

<table>
    <tr>
        <td><strong>Investment Title</strong></td>
        <td><strong>Email</strong></td>
        <td><strong>Details</strong></td>
    </tr>

<?php

    // Start looping table row
    while($rows=mysql_fetch_array($result)){
?>
    <tr>
        <td><?php echo $rows['title']; ?></td>
        <td><?php echo $rows['email']; ?></td>
        <td><a href="#" onClick="viewInvestor();">More details...</a></td>
    </tr>
<?php
    // Exit looping and close connection
}
    mysql_close();
?>
    <tr>
</tr>
</table>
<div id="detail"></div>
4

2 回答 2

4

我不确定这是否是你想要做的,但你可以尝试这样的事情。我希望这有帮助

HTML

<table>
    <tr>
        <td><strong>Investment Title</strong></td>
        <td><strong>Email</strong></td>
        <td><a href='#' id='show_details'>More Details</a></td>
    </tr>
    <tr>
        <td><?php echo $rows['title']; ?></td>
        <td><?php echo $rows['email']; ?></td>
        <td id='details'><?php echo $rows['details'];?></td>
    </tr>
</table>

Javascript - jQuery

$(document).ready(function()
{
    $('#details').hide(); //on ready hide the td details

    $('#show_details').click(function()
    {
        $('#details').show();
    });
});


更新

的意思是这样看我的小提琴

于 2013-06-07T00:08:05.533 回答
1

没有 JQuery:

HTML

<td id='details'>The details are in here...</td>
<td id='details1'>The other details are in here...</td>

Javascript

document.getElementById('details').style.display = 'table-cell';
document.getElementById('details1').style.display = 'none';
于 2013-06-07T01:19:28.167 回答