0

我有下面的代码,我有第一个表,我通过 while 循环获取它的数据。我在这个表中有一行是“更多详细信息”,每行按钮都是“详细信息”。我已经尝试过这段 jquery 代码,但它只适用于第一个按钮,假设我在表中有 10 行当然有 10 个按钮,所以只有第一个按钮有效并显示“table2”,但其他按钮不起作用。我认为也许我可以将一个变量传递给 jquery,该变量确定用户单击了哪个按钮以显示与此按钮相关的 table2。我用谷歌搜索了这个,但谷歌让我失望了,没有结果。任何帮助将不胜感激。

<script src="http://code.jquery.com/jquery-latest.js"></script>
    <?php 
        $sql3= mysql_query("SELECT * FROM data  ");
        while($row3 =mysql_fetch_array($sql3)){
    ?>
<script>

$(document).ready(function() {
    $('#showr').click(function(){
        $('#Table2').show();
    });
});
</script>


    <table width='100%' border='1' cellspacing='0' cellpadding='0'>
        <th>Weeks</th>
        <th>date</th>
        <th>place</th>
        <th>More Details</th>
        <tr>
<?php 
        echo "<tr ><td style= 'text-align : center ;'>my rows1</td>" ;
        echo "<td style= 'text-align : center ;'>myrows2</td>";
        echo "<td  style= 'text-align : center ;'> myrows3</td>";
        echo "<td style= 'text-align : center ;'><button id='showr'>More Details</button></td></tr>";
}
?>
</tr>
</table><br />

<div id= "Table2" style= "display:none;">
    <table width='100%' border='1' cellspacing='0' cellpadding='0'>
        <th>try</th>
        <th>try2</th>
        <tr>
            <td>try3</td>
            <td>trs</td>
        </tr>
    </table>
</div>
4

1 回答 1

1

如果您想让每个按钮显示不同的表格,我会使用 ids 在按钮和表格之间创建关系。我假设您在表中使用了自动递增的主键;如果没有,您可以在循环中放置一个计数器并将其用作 id。

下面省略了很多输出有效表格的代码。

<?php
while($row3 = mysql_fetch_array($sql3)){
//output your normal table rows

//presuming a numeric primary key to use as id
echo "<td><button id='showr_" . $row3['primaryKey'] . "' class='showr'>Show Details</button></td>";


}
?>

<?php
//reset mysql data set so we can loop through it again to output the second tables
mysql_data_seek($sql3, 0);
while($row3 = mysql_fetch_array($sql3)){
//output hidden table
echo "<table style='display: none' class='table2' id='table2_" . $row3['primaryKey'] . "'>";
//output rest of rows here...
echo "</table>";
?>

Javascript 将看到一个按钮被点击,获取该按钮的 id,并显示相关表格,同时隐藏当前可能显示的任何表格。

<script type='text/javascript'>
$(document).ready(function() {
    $('.showr').click(function(){
        //get id by splitting on the underscore within the 'id' attribute
        //$(this) refers to the button that has been clicked
        var id = $(this).attr('id').split('_')[1];

        //hide all table2's and then show the one we want
        $('.table2').hide();
        $('#Table2_' + id).show();
    });
});
</script>

于 2012-04-20T15:45:29.693 回答