在本文中,您將了解如何在 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中文網其他相關文章!