gpt4 book ai didi

php - Bootstrap 根据模态中的 id 显示信息

转载 作者:行者123 更新时间:2023-11-28 03:24:07 27 4
gpt4 key购买 nike

我想使用模态显示有关数据库中文件的更多信息,而不是向表中添加更多列,也不是打开新页面。这是我的代码

<table id="file" class="table table-bordered table-striped table-hover">
<?php
$result = mysql_query("SELECT * FROM files")
?>
<thead>
<tr>
<th>ID <i class="fa fa-sort"></i></th>
<th>Name <i class="fa fa-sort"></i></th>
<th>Size <i class="fa fa-sort"></i></th>
<th>Delete </th>
</tr>
</thead>
<tbody>
<?php
while($row = mysql_fetch_array( $result )) {
?>
<tr class="record">
<td><?php echo $row['id'];?></td>
<td><?php echo $row['name']; ?> </td>
<td><?php echo $row['size']; ?> </td>
<td><div align="center"><a href="#" id="<?php echo $row['id'] ?>" class="infobutton fa fa-times" title="Info"></a></div></td>
<td><div align="center"><a href="#" id="<?php echo $row['id'] ?>" class="delbutton fa fa-times" title="Click To Delete"></a></div></td>
</tr>

<?php
}
?>
</tbody>
</table>

提前致谢。如果有任何其他方式的地方说出来。

最佳答案

您可以用 PHP 替换以下数据目标和模式 ID,如果这是您的意思。

    <!--This calls the modal by data-target ID -->
<a data-toggle="modal" data-target="#myModal">This link calls the modal</a>


<!--modal content-->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title" id="myModalLabel"></h4>
</div>
<div class="modal-body">

<!-- your content goes here -->

</div>
<div class="modal-footer">
<center><button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button></center>
</div>
</div>

关于php - Bootstrap 根据模态中的 id 显示信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22312298/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com