我希望能够使用 jQuery 在逗号后注入一个跨度。我有一些看起来像这样的 div:
<div class="title">Some text, with a comma.</div>
<div class="title">Some text, with a comma.</div>
<div class="title">Some text, with a comma.</div>
<div class="title">Some text, with a comma.</div>
<div class="title">Some text, with a comma.</div>
<div class="title">Some text, with a comma.</div>
我想让它们看起来像这样:
<div class="title">Some text,<span class="something"> with a comma.</span></div>
有没有办法在逗号后附加文本或 html 并且只针对标题类?