gpt4 book ai didi

javascript - 用 HTML 元素包裹字符串的特定部分

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

假设我有一个标题 ( <h1> ),内容为 The 20 Most Useful Users on Stack Exchange 。有没有办法添加<span class="numbers"></span>元素仅围绕 20使用 JavaScript?

最佳答案

实现这一点的最简单方法是:

$('h1').each(function (_, el) {
var $this = $(el);
var h1Content = $this.html();
$this.html(h1Content.replace(/(\d+)/, '<span>$1</span>'));
});

这假设您想要第一个数字。 <强> DEMO

关于javascript - 用 HTML 元素包裹字符串的特定部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17498746/

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