我有一个很棒的
HTML页面.一些元素(可以是p,h1,div等)用类’keep_me’标记.
我需要删除页面中没有这个类的所有元素吗?关于如何使用jQuery做任何想法?
我需要删除页面中没有这个类的所有元素吗?关于如何使用jQuery做任何想法?
我试过类似的东西,但它不起作用(显然;):
jQuery('#content *').remove(":not('[class=keep_me]')");
解决方法
做就是了:
jQuery('#content :not(.keep_me)').remove();
jQuery(‘:not(selector)’)
Selects all elements that do not match the given selector.