我有 5 张图片(人物头像照片)。我正在使用以下 jQuery 在单击每个图像时显示和隐藏相应的 div(以显示有关每个人的信息)。
$('.personDiv').hide();
$('.listPerson').click(function(){
$('.personDiv').hide();
$('#person'+$(this).attr('target')).show();
$('.listPerson').css('opacity', 0.6);
$(this).css('opacity', 1);
});
当从其他页面上的某些链接到达时,我希望选择特定的图像(并且已经显示了相应的 div),就像 a href="example.html#anchor" 将用户链接到链接的特定位置一样页。我怎样才能在我的场景中实现这一点?
多谢了。