从图像的src变量创建图像

时间:2013-08-15 15:22:03

标签: jquery

变量imageOne是图像的正确路径。为什么下面没有用该路径创建图像?

    jQuery('#main-img-cont').prepend('<img src="'imageOne'" />');

3 个答案:

答案 0 :(得分:2)

你错过了字符串连接:

jQuery('#main-img-cont').prepend('<img src="' + imageOne + '" />');

答案 1 :(得分:2)

你应该使用

 jQuery('#main-img-cont').prepend("<img src='"+imageOne+"' />");

答案 2 :(得分:1)

您遇到语法错误。使用

jQuery('#main-img-cont').prepend('<img src="'+imageOne+'" />');

但是这种错误应该在using the console没有去过的情况下被检测到。