Home  >  Article  >  Web Front-end  >  How to get a certain parameter on the url using javascript_javascript skills

How to get a certain parameter on the url using javascript_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:16:50970browse
Copy code The code is as follows:

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" 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