2

私のコードはこれです

var call_from='fb_test'
jQuery('.test').html("<img src=\"https://wwww.socialappshq.com/images/socialapps/loading.gif\" height=\"15\" width=\"15\" id=\"loading_image_\" + call_from + \">");

しかし、正しく連結されていません助けてください

4

4 に答える 4

2

JavaScript を使用して html を記述する場合は'、文字列を"囲み、属性値を囲みます。

var call_from='fb_test'
jQuery('.test').html('<img src="https://wwww.socialappshq.com/images/socialapps/loading.gif" height="15" width="15" id="loading_image_' + call_from + '">');
于 2013-07-31T04:41:31.157 に答える
1

以下のコードを試してください。

var call_from='fb_test';
var yourHtml = '<img src="https://wwww.socialappshq.com/images/socialapps/loading.gif" height="15" width="15" id="loading_image_' + call_from + '"/>';
jQuery('.test').html(yourHtml);
于 2013-07-31T04:42:37.617 に答える
1

これをJavaScript 試してください

  var call_from='fb_test'
  jQuery('.test').html("<img src=\"https://wwww.socialappshq.com/images/socialapps/loading.gif\" height=\"15\" width=\"15\" id=\"loading_image_\"" + call_from + "\">");
于 2013-07-31T04:42:42.047 に答える
0
var yourHtml = '<img src="https://wwww.socialappshq.com/images/socialapps/loading.gif" height="15" width="15" id="loading_image_' + call_from + '"/>';
            jQuery('.'+call_from).html(yourHtml);
于 2013-07-31T04:59:43.103 に答える