前端之家收集整理的这篇文章主要介绍了
jquery删除除div之外的所有小孩,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何
删除div内的所有
内容,除了div = span / class =’notsure’?我可以
删除所有的孩子使用空,但不知道如何安全的特定的div?
<div id="test">
here is a test
<p>a paragraph</p>
<div class="notesure"></div>
</div>
var save = $('#test .notsure').detach();
$('#test').empty().append(save);
原文链接:https://www.f2er.com/jquery/179967.html