javascript html タグ (span など) を使用してコンテンツとコンテンツ内の html タグを削除するにはどうすればよいですか? 一例:
<div id="content">
<span id=1 class="note" >
<p> <span id=1 class="note" >hello! its one example </span> </p>
<li> <span id=1 class="note" >yes,one example </span> </li>
</span>
</div>
結果は次のようになります。
<div id="content">
<p> hello! its one example</p><li>yes,one example</li>
</div>