在jQuery中删除链接

时间:2008-10-08 22:08:46

标签: javascript jquery

我有点像这样的HTML:

<a href="#somthing" id="a1"><img src="something" /></a>
<a href="#somthing" id="a2"><img src="something" /></a>

我需要剥离链接,所以我只剩下几个图像标签。用jQuery做这个最有效的方法是什么?

3 个答案:

答案 0 :(得分:8)

$("a > img").parent()   // match all <a><img></a>, select <a> parents
   .each( function()    // for each link
   { 
      $(this).replaceWith(              // replace the <a>
         $(this).children().remove() ); // with its detached children.
   });

答案 1 :(得分:4)

这应该这样做:

$('a[id^=a]').each(function() { $(this).replaceWith($(this).html()); });

答案 2 :(得分:1)

在普通的javascript中它会是这样的:

<script type="text/javascript">
window.onload = function(){
  var l = document.getElementsByTagName("a");
  for(i=0, im=l.length; im>i; i++){
    if(l[i].firstChild.tagName == "img"){
      l[i].parentNode.replaceChild(l[i].firstChild,l[i]);
    }
  }
}
</script>