私はjsとjQueryの初心者で、少し最適化できると思われるコードを少し書きました。ここに私が持っているものがあります:
$(".team-member.personX").click(function(){
$(this).children(".img-mask").attr("src", "images/img-mask-active.png");
$(".member-info.personX").fadeIn();
});
$(".member-info.personX .close").click(function(){
$(".team-member.personX .img-mask").attr("src", "images/img-mask.png");
$(".member-info.personX").fadeOut();
});
主に質問したいのは、同じコードを 4 回繰り返さずに-- X --を1,2,3,4に置き換える方法があるということです。どんな助けでも大歓迎です。