我有一系列 DIV,每个都有一个 X 的图像:
<div class="hotspot" id="hs1" class="hotspot"><img src="images/xmark.png" alt="x"></div>
我想要做的是从它们隐藏但仍然可以点击开始,然后点击显示里面的图像。
如果我使用
<div class="hotspot" id="hs1" class="hotspot">
<img class="x" src="images/xmark.png" alt="x">
</div>
.hotpsot img { visibility: hidden;}
接着
$('#hs1').click(function(){
$(this).find(img).show();
});
div 确实获得了点击,但未显示图像。
我也试过 display:none 和 children()