我想以另一种形式显示一种形式的图像。我有两个表格 index.html 和 images.html。在 index.html 中,
<html>
<head>
<title> demo </title>
<style type="text/css">
#container{
height:100%;
width:100%;
postion:relative;
}
.divclass{
height:auto;
width:auto;
position:relative;
}
.divclass #imgdiv1{
margin-top:30px;
position:relative;
height:200px;
width:200px;
border:1px solid #000;
}
</style>
<script type="text/javascript" src="jquery-1.8.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#imgdiv1 img').click(function(){
var n=$('#imgdiv1 img').length;
$('#lightboxdiv').append(' ('+n+')');
});
});
</script>
</head>
<body>
<div id="#container">
<div id="lightboxdiv">
Light Box Images
</div>
<div class="divclass">
<div id="imgdiv1">
<img src="001_19_3.jpg" style="width:150px;height:180px;position:absolute;visible:visible;z-index:1;">
<img src="002_21_3.jpg" style="width:150px;height:180px;position:absolute;visible:hidden;">
<img src="003_19_3.jpg" style="width:150px;height:180px;position:absolute;visible:hidden;">
<img src="004_19_3.jpg" style="width:150px;height:180px;position:absolute;visible:hidden;">
</div>
</div>
</div>
</body>
</html>
如果我单击图像,图像计数将为 5。如果我单击计数,它将在下一个窗口中显示图像。我想获取 5 张图像并将图像显示在 images.html 中。有人可以帮忙吗?请!