如何获取锚<a> tag

时间:2017-01-29 11:18:09

标签: jquery html

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。

感谢。 ;)

1 个答案:

答案 0 :(得分:0)

使用$('a').html()这将为您提供文本格式的<img src="" width="" height="" />

https://jsfiddle.net/ugeshgupta000/nzeb0zuy/