Jquery从HTML字符串中删除标记

时间:2014-02-14 10:02:21

标签: jquery html

<table id="tableID">
-----     
<span id="someID"> ABCD...Z </span>
----
----
</table>

结果应为

<table id="tableID">
-----     
ABCD...Z
----
----
</table>

如何通过jquery实现这一目标?

任何帮助???

2 个答案:

答案 0 :(得分:4)

您可以使用 replaceWith()

替换元素
$('span#someID').replaceWith(function() {
    return $(this).text();
});

答案 1 :(得分:2)

您可以使用replaceWith()

$("#someID").replaceWith($("#someID").text());