我从我的数据库中加载了多个图像,并且在每个图像的底部都有一个共享按钮...单击共享按钮时,会出现一个带有不同共享选项的新 div。
我的问题是当我按下共享按钮时......页面上的所有图像都会出现隐藏的 div,我只想为一张图像而不是所有图像出现。
这是我到目前为止所拥有的:
HTML
<div id="wrapper">
<a href="<?php echo $link; ?>"><img class="img-box" src="/images/<?php echo $img; ?>.jpg"></a>
<div class="share-holder" name="<?php echo $img_id; ?>">share</div>
<div class="share-fadein"></div>
</div>
CSS
.share-fadein{
width:210px;
height:40px;
background-color:#eee ;
display:none;
}
脚本
$(document).ready(function(){
$(".share-holder").click(function(){
$(".share-fadein").fadeIn();
});
});
谢谢