0
var temp="path.png"

如何将 temp var 传递给 jquery 函数,如下所示

$('#mapfoto').prepend('<img id="theImg"  src="http://path.gr/"+temp />')
4

2 回答 2

2
$('#mapfoto').prepend('<img id="theImg"  src="http://path.gr/' + temp + '" />');
于 2013-03-12T11:19:13.027 回答
1

在字符串连接中使用正确的引号位置:

$('#mapfoto').prepend('<img id="theImg" src="http://path.gr/' + temp + '" />');
于 2013-03-12T11:19:06.203 回答