jquery – 如何删除没有指定类的元素

前端之家收集整理的这篇文章主要介绍了jquery – 如何删除没有指定类的元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个很棒的 HTML页面.一些元素(可以是p,h1,div等)用类’keep_me’标记.
我需要删除页面中没有这个类的所有元素吗?关于如何使用jQuery做任何想法?

我试过类似的东西,但它不起作用(显然;):

jQuery('#content *').remove(":not('[class=keep_me]')");

解决方法

做就是了:
jQuery('#content :not(.keep_me)').remove();

documentation

jQuery(‘:not(selector)’)

Selects all elements that do not match the given selector.

原文链接:https://www.f2er.com/jquery/176914.html

猜你在找的jQuery相关文章