Home >Web Front-end >JS Tutorial >JavaScript uses regular expressions to obtain a certain parameter on the URL_javascript tips

JavaScript uses regular expressions to obtain a certain parameter on the URL_javascript tips

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 16:37:151261browse
function GetUrlMenuCode() { 
var url = window.location.href; 
var parameter = url.substring(url.indexOf('?') + 1); 
parameter = parameter.split('&'); 
var reg = /MenuCode=/g; 
var menuCode = ""; 
for (var i = 0; i < parameter.length; i++) { 
reg.lastIndex = 0; 
if (reg.test(parameter[i])) { 
menuCode = parameter[i].replace("MenuCode=", ""); 
break; 
} 
} 
return menuCode; 
}

The above example shows a parameter named "MenuCode" being obtained from the url

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn