gpt4 book ai didi

javascript - 从 HTML 中删除多个元素的字符串

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

我想删除标题末尾的冒号,所以我使用:

$('.title').html($('.title').html().replace(':', ''))
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="title">
Apples:
</div>
<div class="title">
Oranges:
</div>

它有效,它删除了冒号,但它还将第二个标题 Oranges 替换为 Apples?

https://jsfiddle.net/X528L/8/

最佳答案

您可以给 html 一个闭包,然后独立地更改每个闭包。

$('.title').html(function(index, currentHTML){
return currentHTML.replace(/:/g, '');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="title">
Apples:
</div>
<div class="title">
Oranges:
</div>

关于javascript - 从 HTML 中删除多个元素的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50473301/

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