--- title: URL.searchParams slug: Web/API/URL/searchParams tags: - API - URL - 参考 - 只读 - 只读属性 - 属性 translation_of: Web/API/URL/searchParams ---
{{domxref("URL")}} 接口的 searchParams
属性返回一个 {{domxref("URLSearchParams")}} 对象,这个对象包含当前 URL 中解码后的 {{httpmethod("GET")}} 查询参数。
{{AvailableInWorkers}}
const urlSearchParams = url.searchParams
一个 {{domxref("URLSearchParams")}} 对象。
如果你的 URL 是 https://example.com/?name=Jonathan&age=18
,你可以这样解析 URL,然后得到 name
和 age
的值。
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")}}