gpt4 book ai didi

javascript - 如何多次更换?

转载 作者:数据小太阳 更新时间:2023-10-29 05:44:53 26 4
gpt4 key购买 nike

到目前为止,这是我的代码:

$("h1.intro:contains('|')").each(function() {
$(this).html($(this).html().replace('|','</span><br /><span>'))
});

这只有效一次,但它必须适用于所有这些“|”...

有什么想法吗?

最佳答案

添加/g修饰符:

$("h1.intro:contains('|')").each(function() {
$(this).html($(this).html().replace(/\|/g, '</span><br /><span>'));
});

更多信息:

The g modifier is used to perform a global match (find all matches rather than stopping after the first match).

关于javascript - 如何多次更换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3971244/

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