なぜこれがうまくいかないのか、私は立ち往生しています。div
のクラスで可視を取得してから、 のクラスでを取得し、.open
それに画像を追加します。div
.edititable
どんな助けでも素晴らしいでしょう。
これが私のコードです:
$('#imagefiles ul li img').click(function() {
//Get the source of the image that was clicked
var img = $(this).attr('src');
//grab the visible div and the div with class edititable within it and append image
$(".open:visible.edititable").append('<img src="' + img + '" style="width:30%; height:30%;" ">');
});