gpt4 book ai didi

javascript - 如何选择末尾没有点的段落并删除 - 使用 jQuery/javascript?

转载 作者:行者123 更新时间:2023-11-30 07:27:22 24 4
gpt4 key购买 nike

我有以下段落:

<p>This is a first paragraph.</p>
<p>This is a second</p>
<p>A third paragraph is here.</p>
<p>And a fourth</p>

第二段和第四段句末没有句号。有没有办法选择这些段落,然后用 jquery/javascript 删除它们?

最佳答案

$('p').each(function() {
var par = $(this), text = par.text();
if (text.charAt(text.length-1) !== '.') {
par.remove();
}
});

当然,在点和段落末尾之间不需要额外的空格(或其他字符):在这种情况下,使用正则表达式检查而不是 charAt() 可能是更好的选择

关于javascript - 如何选择末尾没有点的段落并删除 - 使用 jQuery/javascript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9995417/

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