13 lines
323 B
TypeScript
13 lines
323 B
TypeScript
![]() |
export function findGetParameter(parameterName: string): string | null {
|
||
|
let result = null,
|
||
|
tmp = [];
|
||
|
window.location.search
|
||
|
.substr(1)
|
||
|
.split("&")
|
||
|
.forEach(function(item) {
|
||
|
tmp = item.split("=");
|
||
|
if (tmp[0] === parameterName) result = decodeURIComponent(tmp[1]);
|
||
|
});
|
||
|
return result;
|
||
|
}
|