var temp="path.png"
如何将temp var传递给jquery函数,如下所示
$('#mapfoto').prepend('<img id="theImg" src="http://path.gr/"+temp />')
答案 0 :(得分:2)
$('#mapfoto').prepend('<img id="theImg" src="http://path.gr/' + temp + '" />');
答案 1 :(得分:1)
在字符串连接中使用正确的引号:
$('#mapfoto').prepend('<img id="theImg" src="http://path.gr/' + temp + '" />');