我有一堆看起来像这样的李:
<li class="thing">thing</li>
我想以某种方式将thing
变成<a href="#" class="remove-thing">thing</a>
我正在使用replaceWith,但用li
标记替换整个a
而不是文本。有什么建议吗?
答案 0 :(得分:9)
您可以使用wrapInner()
将列表项的内部文本包装在锚点中:
$('.thing').wrapInner('<a href="#" class="remove-thing"></a>');