aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/url/searchparams/index.md
blob: 9fab62581f0f5a3a1b254a9edc7aa02cbaa398a3 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
title: URL.searchParams
slug: Web/API/URL/searchParams
tags:
  - API
  - Lecture-seule
  - Propriété
  - Reference
  - URL
  - URLSearchParameters
translation_of: Web/API/URL/searchParams
---
<div>{{APIRef("URL API")}}</div>

<div> </div>

<div>La propriété en lecture seule <strong><code>searchParams</code></strong> de l'interface {{domxref("URL")}} retourne</div>

<div>un objet {{domxref("URLSearchParams")}} permettant d'accéder aux arguments décodés</div>

<div>de la requête GET contenu dans l'URL.</div>

<div> </div>

<p>{{AvailableInWorkers}}</p>

<h2 id="Syntaxe">Syntaxe</h2>

<pre class="syntaxbox">var urlSearchParams = URL.searchParams;</pre>

<h3 id="Value">Value</h3>

<p>Un objet {{domxref("URLSearchParams")}}.</p>

<h2 id="Exemples">Exemples</h2>

<p>Si l'URL de votre page est <code>https://example.com/?nom=Jonathan%20Smith&amp;age=18</code><br>
 vous pouvez extraire les paramètres 'nom' et 'age' en utilisant:</p>

<pre class="brush: 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</pre>

<h2 id="Spécifications">Spécifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Spécification</th>
   <th scope="col">Statut</th>
   <th scope="col">Commentaire</th>
  </tr>
  <tr>
   <td>{{SpecName('URL', '#dom-url-searchparams', 'searchParams')}}</td>
   <td>{{Spec2('URL')}}</td>
   <td>Définition initiale.</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilités_des_navigateurs">Compatibilités des navigateurs</h2>



<p>{{Compat("api.URL.searchParams")}}</p>