gpt4 book ai didi

jquery - 使用 jQuery 选择段落中的所有标点符号并为其分配一个类?

转载 作者:行者123 更新时间:2023-12-01 03:01:40 26 4
gpt4 key购买 nike

我想更改段落中标点符号(和其他符号)的颜色。我有这样的东西:

"Hello I'm a web & graphic designer."

我想要得到这样的东西:

"Hello I<strong class="highlighted">'</strong>m a web
<strong class="highlighted">&</strong> graphic designer
<strong class="highlighted">.</strong>"

有什么建议吗?

最佳答案

您可以通过正则表达式替换来做到这一点:

txt = $('#the-paragraph').text();
txt = txt.replace(/(['&.e])/g,"<span class=\"highlighted\">$1</span>");
$('#the-paragraph').html(txt);

请参阅此处的实际示例:http://jsfiddle.net/KcyEs/1/

关于jquery - 使用 jQuery 选择段落中的所有标点符号并为其分配一个类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8503250/

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