「echo ucwords($row2[mainImage1]);」を置き換えるにはどうすればよいですか 以下のタグの href 属性に「echo $row2[selectionThumb3];」Javascriptを使用して以下のタグのsrc属性から?
私のコードは次のようになります。
<img class="thumbNotSelected" src="../images/ThumbSelection/<?php echo $row2[selectionThumb3]; ?>.jpg" />
<div class="mainImage magnify">
<a href="../images/MainImage/<?php echo ucwords($row2[mainImage1]); ?>.jpg" rel="lightbox" title="<?=$row2[name]?>">
<img class="mainImage small" src="../images/MainImage/<?php echo $row2[mainImage1]; ?>.jpg" /></a>
</div>
現在の Javascript を追加する:
$('#thumbs').delegate('img', {
click: function(){
$('.mainImage').attr('src',$(this).attr('src').replace('ThumbSelection','MainImage').replace('selectionThumb','mainImage')); //here I replace the src of the Main Image to match the selected thumbnail.
var $this = $(this),
index = $this.index();
$("#thumbs img").removeClass('thumbSelected');
$this.addClass('thumbSelected');
}});
ユーザーがクリックできるサムがいくつかあります。メイン画像は、サムをクリックした後、対応する画像を読み込みます。ただし、(ライトボックスに使用される) は、新しく読み込まれた画像に適応するために変更されることはなく、ライトボックスは、ユーザーがクリックした画像ではなく、常に同じ画像を使用します。ありがとう!