タイトル: 子要素の削除
SEOタイトル: jQueryにおける子要素の削除
HTML
<div id="test"> <p>val1</p> </div> |
jQuery
以下、<p>要素を削除する方法。
$('#test').children.remove(); |