javascript - How to get the value from the URL parameter? - Stack Overflow
See this function getURLParameters(paramName) { var sURL = window.document.URL.toString(); if (sURL.indexOf("?") > 0) { var arrParams = sURL.split("?"); var arrURLParams = arrParams[1].split("&"); var arrParamNames = new Array ...
stackoverflow.com |