我有以下輸入:如何在原地刪除跨度?
<p>
<span class="highlight">
Some text <b>that can have formatted components too</b>.
</span>
And some more text here of course.
</p>
而且我想達到以下的輸出:
<p>
Some text <b>that can have formatted components too</b>.
And some more text here of course.
</p>
我使用jQuery和它有一個.unwrap()
功能,但如果我去 $('.highlight').unwrap()
它刪除<p>
。 :(
手動黑客的DOM似乎是一個麻煩。你知道任何短期的解決方案?
'$(。。 「亮點 」)父(「 P 」)HTML($(「 亮點」)文本());' – 2013-05-06 10:09:51