私が持っているとしましょう:
<a href=''>
<div>hello</div>
</a>
取得するために A 要素を削除したい:
<div>hello</div>
これはjQueryで実行できますか?
私が持っているとしましょう:
<a href=''>
<div>hello</div>
</a>
取得するために A 要素を削除したい:
<div>hello</div>
これはjQueryで実行できますか?
jquery http://api.jquery.com/unwrap/の unwrap() を使用します
$('div').unwrap();
この.unwrap()
メソッドは、要素の親を削除します。
$('div').unwrap();