不知道如何以正确的方式写这个。我可以让它工作,但是当我查看源代码时,它看起来像这样
<img "="" "style="width:30%; height:30%;" src="correctsource"></img>
正如您在图像标签的开头看到的那样,它们是两个额外的引号和一个等号。
这是我的代码
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%;" ">');