我在div上有5张图像(如产品的拇指图像)。而且我还有一个带有简要标签部分的div。
我的编码(如下所示):
style"display:none"
。我希望看到点击的拇指可以看到它的详细div部分。提前致谢。
答案 0 :(得分:2)
答案 1 :(得分:1)
答案 2 :(得分:0)
我的回答只能与你的描述一样好。
$("#theDivToBeClickedOn").click(function(){
$("#theDivWhereImageIs").show();
});
答案 3 :(得分:0)
我假设您有其他一些具有特定图像描述的标签,因此您也必须显示/隐藏它们。
$('#div1 img').click(function(){ //when you click on the thumb in the first div
var i = $('#div1 img').index(this); //get index of thumb to correspond to image
$('#div3').toggle(); //show third div
$('#div3 div').eq(i).toggle(); //show the particular thumb's description
});