gpt4 book ai didi

javascript - jquery中的部分字符串替换

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

只是想知道jquery中是否可以部分字符串替换?

我尝试使用以下代码,但这似乎对我不起作用:

var test = "testing_supplyAddress_001";
test.replace('supplyAddress', 'billingAddress');

我尝试仅将 SupplyAddress 替换为 billingAddress,因此输出将为testing_billingAddress _001

最佳答案

JavaScript 字符串是静态的,因此 .replace() 实际上并不修改字符串。您需要将 .replace() 函数返回的值分配回变量:

var test = "testing_supplyAddress_001";
test = test.replace('supplyAddress', 'billingAddress');

Here's a demo showing this in action ->

关于javascript - jquery中的部分字符串替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5493798/

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