--- title: URL.searchParams slug: Web/API/URL/searchParams tags: - API - URL - 参考 - 只读 - 只读属性 - 属性 translation_of: Web/API/URL/searchParams ---
{{APIRef("URL API")}}

{{domxref("URL")}} 接口的 searchParams 属性返回一个 {{domxref("URLSearchParams")}} 对象,这个对象包含当前 URL 中解码后的 {{httpmethod("GET")}} 查询参数。

{{AvailableInWorkers}}

语法

const urlSearchParams = url.searchParams

属性值

一个 {{domxref("URLSearchParams")}} 对象。

例子

如果你的 URL 是 https://example.com/?name=Jonathan&age=18 ,你可以这样解析 URL,然后得到 nameage 的值。

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

规范

规范 状态 备注
{{SpecName('URL', '#dom-url-searchparams', 'searchParams')}} {{Spec2('URL')}} Initial definition.

浏览器兼容性

{{Compat("api.URL.searchParams")}}