I want to retrieve the tag which is inside an anchor tag.
<pre>
<a some properties>
**<img src="" width="" height="" />**
</a>
</pre>
I need to get whole <img>
.
What I am doing is:
if($(img_ads[k]).has("img").length) {
console.log ($(img_ads[k]).children('img'));
}
It returns this: Output of above Jquery code
内的标记请建议一些简单的替代方案,它可以将图像标记的内容输出为简单的文本或HTML。
感谢。 ;)
答案 0 :(得分:0)
使用$('a').html()
这将为您提供文本格式的<img src="" width="" height="" />