URLSearchParams
js.html.URLSearchParams (extern class)
The URLSearchParams
interface defines utility methods to work with the query string of a URL.
Documentation URLSearchParams by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See:
Instance Members
Appends a specified key/value pair as a new search parameter.
Deletes the given search parameter, and its associated value, from the list of all search parameters.
Returns the first value associated to the given search parameter.
Returns all the values associated with a given search parameter.
Returns a Boolean
indicating if such a search parameter exists.
Sets the value associated to a given search parameter to the given value. If there were several values, delete the others.
Sorts all key/value pairs, if any, by their keys.
Returns an Iteration_protocols
allowing to go through all key/value pairs contained in this object.
Returns an Iteration_protocols
allowing to go through all keys of the key/value pairs contained in this object.
Returns an Iteration_protocols
allowing to go through all values of the key/value pairs contained in this object.