私は、次の入力があります。スパンをインプレイスで削除するにはどうすればよいですか?
<p>
<span class="highlight">
Some text <b>that can have formatted components too</b>.
</span>
And some more text here of course.
</p>
をそして、私は次のような出力を達成したい:私はjqueryのを使用していますし、それが.unwrap()
機能を持っているが、私は $('.highlight').unwrap()
を行けば、それは削除さ
<p>
Some text <b>that can have formatted components too</b>.
And some more text here of course.
</p>
を<p>
。 :(
は手動でDOMをハッキングすることは面倒のように思える。あなたはどんな短いソリューションを知っていますか?
'$テキスト());安全のために、' –