我的代码:
htmlString+= `<img id=\"image_${result.id}\" src=\"${result.image}\" width=\"100%\">`;
$('#addItem').before(htmlString);
我使用``因为我在代码中需要$ {variable.attribute},我的代码很复杂,字符串中的操作+很难。
答案 0 :(得分:0)
你可以这样使用
htmlString+= '<img id="image_${result.id}" src="${result.image}" width="100%">';
$('#addItem').before(htmlString);