像
<table id="tableID">
-----
<span id="someID"> ABCD...Z </span>
----
----
</table>
结果应为
<table id="tableID">
-----
ABCD...Z
----
----
</table>
如何通过jquery实现这一目标?
任何帮助???
答案 0 :(得分:4)
您可以使用 replaceWith()
:
$('span#someID').replaceWith(function() {
return $(this).text();
});
答案 1 :(得分:2)
您可以使用replaceWith():
$("#someID").replaceWith($("#someID").text());