我想要一个覆盖文本块的图像块,即文本块上的图像块当我单击图像时,它应该显示文本块并且图像块变得隐藏(可能是更多地扩展文本块以显示内容)。
请注意,文本 div 在图像 div 下应该是不可见的,并且在单击图像时它应该显示出来并且图像将隐藏:
JAVASCRIPT:
$(function(){
$('.close').click(function(){
$('#textDiv').show();
$('#imageDiv').hide();
});
})
HTML:
<div id="imageDiv" >
<a href="#" class="close">Close <img src="images/close.png" class="close"></a>
</div>
<div id="textDiv" style="display:none;">This is the text for the image </div>