我有一点像这样的HTML:
我需要剥离链接,所以我只剩下几个图像标签.使用jQuery执行此操作的最有效方法是什么?
$("a > img").parent() // match all , select parents .each( function() // for each link { $(this).replaceWith( // replace the $(this).children().remove() ); // with its detached children. });