gpt4 book ai didi

javascript - 找到匹配的单词并在它们下划线 - 但只是单词

转载 作者:行者123 更新时间:2023-11-28 14:14:06 24 4
gpt4 key购买 nike

我有以下代码,我试图搜索指定单词的所有实例并在其下划线:

$(".test:contains('moon')").css("text-decoration", "underline");
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="test">The cow jumped over the moon</div>

以上内容是全文下划线。

如何让它仅在“moon”的实例下划线?

最佳答案

迭代每个元素并.replaceinnerHTML:

$(".test:contains('moon')").each(function() {
this.innerHTML = this.innerHTML.replace(/moon/g, '<span style="text-decoration: underline">moon</span>');
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="test">The cow jumped over the moon</div>

关于javascript - 找到匹配的单词并在它们下划线 - 但只是单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58428332/

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