これを正しい方法で書く方法がわからない。私はそれを機能させることができますが、ソースを表示すると次のようになります
<img "="" "style="width:30%; height:30%;" src="correctsource"></img>
画像タグの冒頭でわかるように、それらは 2 つの余分な引用符と等号です。
これが私のコードです
var img = $(this).attr('src');
//grab the visible div and the div with class edititable within it and append image
$(".open:visible").find('.edititable').append('<img src="' + img + '" "style="width:30%; height:30%;" ">');