gpt4 book ai didi

javascript - 如果没有 child ,则删除一些元素

转载 作者:行者123 更新时间:2023-11-30 07:54:42 25 4
gpt4 key购买 nike

如果没有 child ,我需要删除一些元素......

这会起作用...

$$('*').each(function() {
($$(this).text().trim() === '') && $$(this).remove()
});

但它会寻找所有元素...我需要限制某些元素...所以我做了这个...

elements.forEach(element => {
$$(element).each(function() {
($$(this).text().trim() === '') && $$(this).remove()
});
})

但它不起作用..

最佳答案

你可以使用:empty伪选择器来收集所有的空元素:

$(':empty').remove(); // removes all the empty elements 

如果您针对某些特定元素,则要么给它一个类名,然后将两者结合使用:

$('.theClass:empty').remove(); 

或者只使用特定元素的标签名:

$('div:empty').remove(); // removes all the empty divs

关于javascript - 如果没有 child ,则删除一些元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43084922/

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