使用jquery删除链接,但不删除图像

Cie*_*iel 2 jquery

我有一个列表项,每个列表项都包含一个超链接图像.我正在尝试编写一些将删除链接的jQuery,但不会删除图像.这可能吗?

tix*_*xit 10

如果你没有运行1.4:

$("a:has(img)").each(function() { $(this).replaceWith($(this).children()); })
Run Code Online (Sandbox Code Playgroud)