我想在灯箱中显示点击红色圆圈图像的相关数据,但是当我点击它时,它总是在表中第一条记录的灯箱中显示数据我想显示点击的关注记录,我的代码在 JavaScript 中我有写下这几行代码
<script>
function manageLightbox(visibility,id) {
document.getElementById('overlay').style.display = visibility;
document.getElementById('content').style.display = visibility;
}
</script>
我在我的 html 中调用了这个函数
<a href="#"><img src="images/core/icon16/zoom.png" title="View" onClick="return manageLightbox('block','<?php echo $res['id']?>');" /></a>
我的灯箱的html就在这里
<div id="content" class="content">
<a href = "javascript:void(0)" onClick="return manageLightbox('none')">
<img src="images/images1.jpeg" style="width:25px; height:25px; float:right"/></a>
<br/>
<center>
<table>
<tr>
<td>Product_ID</td>
<td><input type="text" name="product_id" value="<?php echo $row['id']; ?>"/></td>
</tr>
<tr>
<td>Name</td>
<td><input type="text" name="name" value="<?php echo $row['name']; ?>"/></td>
</tr>
//and all other fields in light box ....
</table>
</center>
</div>
<div id="overlay" class="overlay" onClick="return manageLightbox("")></div>