私は現在サイトを作成している途中で、ちょっとした問題に遭遇しました。問題のセクションには、2 つの小さな写真と 1 つの大きな写真の 3 つの写真が含まれています。小さな画像の 1 つをクリックすると、大きな画像の場所を取るように、javascript 関数を取得しました。問題?これには全部で 3 つのセクションがあり、小さな画像をクリックすると、適切なセクションの 1 つだけではなく、すべての大きな画像が交換されます。どんな助けでも大歓迎です。いくつかのコードがあります。ありがとう!
$(document).ready(function(){
$('img').click(function(){
var url = $(this).attr('src');
var bigUrl = $('.large-picture > img').attr('src');
$('.large-picture > img').attr('src', url);
$(this).attr('src', bigUrl);
});
});
<div class = 'picture-container'>
<div class = 'large-picture' style = 'width:50%;height:100%;float:left;'>
<img src = 'make-up_artist_dupontstudios.png' width = '100%' height = '100%'>
</div>
<div class = 'picture-content' style = 'float:right;width:45%;height:100%;'>
<div class='picture-title'>UNIQUE CLIENT EXPERIENCE</div>
<div class='picture-text'>Not only is our production facility unique in how easy it is to access for our clients, but our approach is always to instill a sense of comfort and relaxation for our clients. We have the options of full hair and make-up and car services available, at no additional charge, for all of our filmings.</div>
<div class = 'small-picture-wrapper'>
<div class = 'small-picture' style = 'float:left;height:100%;'>
<img src = 'hair_and_makeup_dupontstudios.png' width = '100%' height = '100%'>
</div>
<div class = 'small-picture' style = 'float:right;height:100%;'>
<img src = 'infinity_wall_dupontstudios.png' width = '100%' height = '100%'>
</div>
</div>
</div>
</div>