gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 22:29:14 25 4
gpt4 key购买 nike

我有一个很大的 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.

关于jquery - 如何删除没有指定类的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3557293/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com