Location: search 属性
search
是 Location
接口的一个搜索字符串,也称为查询字符串;即包含一个 '?'
后跟 URL 参数的字符串。
现代浏览器提供 URLSearchParams
和 URL.searchParams
来方便地从查询字符串中解析参数。
值
字符串。
示例
js
// Let an <a id="myAnchor" href="/en-US/docs/Location.search?q=123"> element be in the document
const anchor = document.getElementById("myAnchor");
const queryString = anchor.search; // Returns:'?q=123'
// Further parsing:
const params = new URLSearchParams(queryString);
const q = parseInt(params.get("q")); // is the number 123
规范
规范 |
---|
HTML 标准 # dom-location-search-dev |
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。