将js var作为属性传递给jquery操作

时间:2013-03-12 11:18:08

标签: javascript jquery html

var temp="path.png"

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

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

2 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分:1)

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

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