我正在尝试创建一个网页,其中包含一堆带有数据库信息的卡片。
每张卡片上都会有一个“更多信息”按钮将创建一个弹出模式,其中包含与该卡片相同的信息以及更多信息。我知道我需要一个 while 循环来生成模态,并单独为模态提供不同的 ID。
我已经使用“id”完成了必要的操作数据库中唯一的列当我单击按钮时,我确实得到了模态,但唯一的问题是,无论我单击哪个按钮,模态都会显示最后一张卡片的信息(例如标题、字段、概要、描述)。
所有的卡片都显示了它们的个人信息。听起来我的 while 循环有问题?我确实检查了源代码&它确实正确地在每张特定卡片下方显示带有自己 id 的各个模态(具有正确的 id,例如 1、2、3、4。)请提供帮助。
<?php
include("Config.php");
$query = ("SELECT * FROM proj");
$result = mysqli_query($conn, $query) or die( mysqli_error($conn));
while($test = mysqli_fetch_array($result))
{
?>
<div class="card"><div class="container1">
<div class="card-text">
<h4><b><?php echo $test['title']; ?></b></h4>
<b>field: </b><?php echo $test['field']; ?></br>
<p><?php echo $test['synopsis']; ?></p>
<!-- Trigger/Open The Modal -->
<button id="myBtn<?php echo $test['id']; ?>">More Info</button>
<!-- The Modal -->
<div id="myModal<?php echo $test['id']; ?>" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h4><b><?php echo $test['title']; ?></b></h4>
<p><b>field: </b><?php echo $test['field']; ?></p>
<p><?php echo $test['synopsis']; ?></p>
<p><?php echo $test['description']; ?></p>
<script>
// Get the modal
var modal = document.getElementById("myModal<?php echo $test['id']; ?>");
// Get the button that opens the modal
var btn = document.getElementById("myBtn<?php echo $test['id']; ?>");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
Smart猫小萌
相关分类