我很难在这段代码中正确引用引号。不工作,所以我猜引号是错误的。
html+='<img src="' + noteDirectory + '"/ "' + currentNote + '".png>'";
我很难在这段代码中正确引用引号。不工作,所以我猜引号是错误的。
html+='<img src="' + noteDirectory + '"/ "' + currentNote + '".png>'";
你需要的是这样的:
html+='<img src="' + noteDirectory + '/' + currentNote + '.png">';
一个更好的看待它的方法是:你只需要"
aftersrc=
和 between.png
和 last>
干得好:
html += '<img src="' + noteDirectory + '/' + currentNote + '.png">';
html+='<img src="' + noteDirectory + '/' + currentNote + '.png">';