SCRIPT1014:字符无效`

时间:2016-10-20 04:36:06

标签: javascript html string internet-explorer-8 microsoft-edge

我的代码:

htmlString+= `<img id=\"image_${result.id}\" src=\"${result.image}\" width=\"100%\">`;
                $('#addItem').before(htmlString);

我使用``因为我在代码中需要$ {variable.attribute},我的代码很复杂,字符串中的操作+很难。

1 个答案:

答案 0 :(得分:0)

你可以这样使用

htmlString+= '<img id="image_${result.id}" src="${result.image}" width="100%">';
$('#addItem').before(htmlString);