The searchParams
readonly property of the
URL
interface returns a URLSearchParams
object allowing
access to the GET
decoded query arguments contained in the URL.
Note:
This feature is available in Web Workers.Syntax
const urlSearchParams = url.searchParams
Value
A URLSearchParams
object.
Examples
If the URL of your page is
https://example.com/?name=Jonathan%20Smith&age=18
you could parse out
the name
and age
parameters using:
let params = (new URL(document.location)).searchParams;
let name = params.get('name'); // is the string "Jonathan Smith".
let age = parseInt(params.get('age')); // is the number 18
Specifications
Specification | Status | Comment |
---|---|---|
URL The definition of 'searchParams' in that specification. |
Living Standard | Initial definition. |
Browser compatibility
BCD tables only load in the browser