gpt4 book ai didi

javascript - 将字符串 X 添加到字符串 Y 的某个子字符串之后

转载 作者:行者123 更新时间:2023-12-03 03:31:39 27 4
gpt4 key购买 nike

我有两个字符串:str1 是带有属性的 Controller 的 url

str1 = /Controller/Action?tableid=212&id=&someOtherVal=false

str2 是一个 id 值,当在字段中更改时,应将其添加到 'id=' 为 str1 之后。

如何在 str1 中的“id=”后面添加此 ID,例如“123”?

最佳答案

我希望下面的代码片段是您所期待的

var str1 = "/Controller/Action?tableid=212&id=&someOtherVal=false";
// location.protocol + location.hostname is just to complete the URL
var urltoedit = new URL(location.protocol + location.hostname + str1);
var str2 = 123;
// check if id has value or you can modify if your condition
if(urltoedit.searchParams.get("id")=="")
{
urltoedit.searchParams.set("id",str2);
}
// valtoset is what you need
var valtoset = urltoedit.pathname+urltoedit.search;

关于javascript - 将字符串 X 添加到字符串 Y 的某个子字符串之后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46067974/

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