在本文中,您将了解如何在 JavaScript 中向 URL 添加参数。向 url 添加参数有两种方法:append() 方法和 set() 方法。
append()方法用于专门向url添加键值对。
set() 方法将值添加到特定键。如果该密钥不存在,则会创建一个新密钥。如果存在多个键,则更新其中一个键的值,并删除其他键。
让我们看看这个例子中的append()方法
let inputUrl = new URL('https://urlExample.com?key1=value1'); let inputParams = new URLSearchParams(inputUrl.search); console.log("The parameters of the url is defined as: ", inputParams) inputParams.append('key2', 'value2'); console.log("The url after adding adding the parameters is: ",inputParams)
第 1 步 - 定义带参数的 url。
步骤 2 - 使用append()方法向url添加新参数。
第 3 步 - 显示结果。
让我们看看这个例子中的 set() 方法
let inputUrl = new URL('https://urlExample.com?key1=value1'); let inputParams = new URLSearchParams(inputUrl.search); console.log("The parameters of the url is defined as: ", inputParams) inputParams.set('key2', 'value2'); console.log("The url after adding adding the parameters is: ",inputParams)
第 1 步 - 定义带参数的 url。
步骤 2 - 使用append()方法向url添加新参数。
第 3 步 - 显示结果。
以上是如何在 JavaScript 中向 URL 添加参数?的详细内容。更多信息请关注PHP中文网其他相关文章!