我有这个链接:
https://apiyouflow.com/
我有这些变量:
v1=4;
v2=3;
我想在URL中添加它们,如下所示:
https://apiyouflow.com/4/4
如何将javascript变量添加到URL
答案 0 :(得分:0)
字符串连接 using the +
operator :
var url = "https://apiyouflow.com/";
v1=4;
v2=3;
var concatenated = url + v1 + "/" + v2;
console.log(concatenated);
使用 string.concat()
方法进行字符串连接:
var url = "https://apiyouflow.com/";
v1=4;
v2=3;
var concatenated = url.concat(v1, "/", v2);
console.log(concatenated);
答案 1 :(得分:0)
您可以使用Template literals和location.assign()
location.assign(`/${v1}/${v2}`);