這裏我有示例html,我想解開div中的所有段落標籤。目前的html看起來像這樣。打開div中的所有段落標籤jquery
<div class="divclass">
Hi this is some text.
<p>testing test</p>
<p></p>
<p><a href="#" rel="nofollow">Testing text2</a></p>
</div>
但我想要這樣。
<div class="divclass">
Hi this is some text.
testing test
<a href="#" rel="nofollow">Testing text2</a>
</div>
在此先感謝。
http://stackoverflow.com/questions/17271884/jquery-unwrap-div-within-p –
這也可以幫助https://api.jquery.com/unwrap/ –