Frage

In my search option I redirect my URL to

window.location = '/admin/#q='+value+'&type='+type;

Now I want to take the value of q & type from URL

P.s. due to my url-rewrite rule I can't use ? instead of #

Keine korrekte Lösung

Andere Tipps

Use javascript split('&') on window.location.hash to separate the key/value pairs, then split('=') to separate key from value, check if key=='type'.

You can obtain and modify the value after the # via window.location.hash. Note that depending on the browser there may or may not be a leading # sign.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top