blob: d4d775aed0b2aa749743524812537b16e79b45ac (
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
|
---
title: URL.searchParams
slug: Web/API/URL/searchParams
tags:
- API
- URL
- 参考
- 只读
- 只读属性
- 属性
translation_of: Web/API/URL/searchParams
---
<div>{{APIRef("URL API")}}</div>
<p>{{domxref("URL")}} 接口的 <strong><code>searchParams</code></strong> 属性返回一个 {{domxref("URLSearchParams")}} 对象,这个对象包含当前 URL 中解码后的 {{httpmethod("GET")}} 查询参数。</p>
<p>{{AvailableInWorkers}}</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox notranslate">const <em>urlSearchParams</em> = <em>url</em>.searchParams</pre>
<h3 id="属性值">属性值</h3>
<p>一个 {{domxref("URLSearchParams")}} 对象。</p>
<h2 id="例子">例子</h2>
<p>如果你的 URL 是 <code>https://example.com/?name=Jonathan&age=18</code> ,你可以这样解析 URL,然后得到 <code>name</code> 和 <code>age</code> 的值。</p>
<pre class="brush: js notranslate">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</pre>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">备注</th>
</tr>
<tr>
<td>{{SpecName('URL', '#dom-url-searchparams', 'searchParams')}}</td>
<td>{{Spec2('URL')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.URL.searchParams")}}</p>
|