blob: 0b574d29a0d18da659f3136b396f4ab1e7d59d34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
---
title: URL.searchParams
slug: Web/API/URL/searchParams
tags:
- API
- Lecture-seule
- Propriété
- Reference
- URL
- URLSearchParameters
translation_of: Web/API/URL/searchParams
---
{{APIRef("URL API")}} La propriété en lecture seule **`searchParams`** de l'interface {{domxref("URL")}} retourne un objet {{domxref("URLSearchParams")}} permettant d'accéder aux arguments décodés de la requête GET contenue dans l'URL.
{{AvailableInWorkers}}
## Syntaxe
var urlSearchParams = URL.searchParams;
### Value
Un objet {{domxref("URLSearchParams")}}.
## Exemples
Si l'URL de votre page est `https://example.com/?nom=Jonathan%20Smith&age=18`
vous pouvez extraire les paramètres 'nom' et 'age' en utilisant:
```js
let params = (new URL(document.location)).searchParams;
let name = params.get('nom'); // la chaine de caractère "Jonathan Smith".
let age = parseInt(params.get('age')); // le nombre 18
```
## Spécifications
| Spécification | Statut | Commentaire |
| -------------------------------------------------------------------------------- | -------------------- | -------------------- |
| {{SpecName('URL', '#dom-url-searchparams', 'searchParams')}} | {{Spec2('URL')}} | Définition initiale. |
## Compatibilités des navigateurs
{{Compat("api.URL.searchParams")}}
|