TOC

Web URL 参数

location;
JSON.stringify(location);
('{"ancestorOrigins":{},"href":"https://www.markjour.com/about.html?key=value1&key=value2","origin":"https://www.markjour.com","protocol":"https:","host":"www.markjour.com","hostname":"www.markjour.com","port":"","pathname":"/about.html","search":"?key=value1&key=value2","hash":""}');

location.href; // full url
location.search; // querystring ?key=value&key=value

qs = new URLSearchParams(location.search);
qs.get('key'); // value1
qs.getAll('key'); // [value1, value2]
如果你有魔法,你可以看到一个评论框~