gpt4 book ai didi

javascript - jquery 检查空元素并删除

转载 作者:行者123 更新时间:2023-11-28 15:18:47 25 4
gpt4 key购买 nike

<p>1</p>
<p>2</p>
<p></p>
<p>1</p>
<p></p>

如何删除不包含任何内容的元素?

最佳答案

使用.filter().remove()功能如下:

$('p').filter(function(){
return ( $(this).text() == "" )
}).remove();

或者使用.each() :

$('p').each(function (i, e) {
if ($(e).text() === "") $(e).remove();
});

使用 :empty 效果更好选择器:

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

DEMO - 检查元素(chrome)以查看最终输出

关于javascript - jquery 检查空元素并删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32448055/

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