基本上我有一个html输出格式:
<div class="qtip-content">http://www.urlgoeshere.com/image.jpg</div>
我想要做的是使用jQuery将其包装在图像标记中,以便输出
<div class="qtip-content"><img src="http://www.urlgoeshere.com/image.jpg" /></div>
我在页面上有多个这样的实例,每个网址都不同。
我该怎么做?
答案 0 :(得分:4)
这将处理页面上的每个元素
$(".qtip-content").each(function() {
$(this).html("<img src='" + $(this).html() + "' />");
}
答案 1 :(得分:1)
$('.qtip-content').each(function(){
$(this).html("<img src='"+$(this).html()+"'/>");
});