次のようなリンクでもある画像のリストがあります。
<a href="#"><img alt="P1010104" class="uploaded_image" src="/assets/user_images/156/thumb/P1010104.jpg?1335332807" /></a>
<a href="#"><img alt="P1010104" class="uploaded_image" src="/assets/user_images/157/thumb/P1010105.jpg?1335332809" /></a>
1 つの画像がクリックされたときに画像をページに追加する JavaScript があります。
//add an image from the gallery to the mail later
$('.uploaded_image').click(function(){
alert('clicked');
var src=$(this).attr('src').replace("thumb", "medium");
var location = $('#user_image_location').attr('value');
$('#mailing_body').contents().find("[data-edit-img="+''+location+''+"]").attr('src', src);
$('[data-dismiss]="cancel"').click();
});
ajax を使用して別の画像を画像リストに追加します。ただし、この新しく追加された画像をクリックすると、JavaScript が起動しません。
これどうやってするの?
ありがとう