我现在在这条线上挣扎了一个小时,所以我决定问一下。

$('.tempc').html($('.tempc').html() + '<img src="images/wheather/3.png" width="139" height="50"/></br>');


我无法使用html将图像标签注入divs

<div class="tempc"></div>

最佳答案

尝试使用append

$('.tempc').append($('<img src="images/wheather/3.png" width="139" height="50"/><br/>'));

07-24 15:21