The URLUtils
.searchParams
property is a URLSearchParams
containing the query/search parameters of the URL.
Syntax
object2 = object.searchParams;
object.searchParams = object2;
Examples
var anchor = document.createElement("a");
anchor.href = "https://developer.mozilla.org/en-US/search?q=URLUtils.searchParams&topic=api"
var searchParams = anchor.searchParams;
searchParams.has("topic") === true; // true
searchParams.get("topic") === "api"; // true
searchParams.getAll("topic"); // ["api"]
searchParams.get("foo") === ""; // true
searchParams.append("topic", "webdev");
searchParams.toString(); // "q=URLUtils.searchParams&topic=api&topic=webdev"
searchParams.delete("topic");
searchParams.toString(); // "q=URLUtils.searchParams"
anchor.href; // "https://developer.mozilla.org/en-US/search?q=URLUtils.searchParams"
Specifications
Specification
Status
Comment
URL
Living Standard
Initial definition.
Browser compatibility
Feature
Chrome
Firefox (Gecko)
Internet Explorer
Opera
Safari
Basic support
Not supported
29.0 (29.0)
Not supported
Not supported
Not supported
Feature
Android
Chrome for Android
Firefox Mobile (Gecko)
IE Mobile
Opera Mobile
Safari Mobile
Basic support
Not supported
Not supported
29.0 (29.0)
Not supported
Not supported
Not supported
See also
Document Tags and Contributors
Last updated by:
teoli ,
Dec 6, 2015, 1:22:45 AM