我在HTML页面中有一个分区,我正在尝试在其中显示图像。 我做过类似的事情:
在java-script部分:
var nameoffile="andrew.png";
$("#detected").show().html('<img src="trainingImages/""'+nameoffile+'" >');
在HTML部分:
<div id="detected"></div>
请帮助我查找代码问题。在此先感谢!!
答案 0 :(得分:0)
您需要正确连接您的值,并先设置html
然后显示内容:
$("#detected").show().html('<img src="trainingImages/'+nameoffile+'" >');
答案 1 :(得分:0)
您遇到语法错误。它应该是:
$("#detected").show().html('<img src="trainingImages/'+nameoffile+'" >');
答案 2 :(得分:0)
使用此:
var nameoffile="andrew.png";
$("#detected").show().html('<img src="trainingImages/'+nameoffile+'" >');
// remove "" here ^^