Home  >  Article  >  Web Front-end  >  JS obtains the parameter value of the URL hyperlink example code_javascript skills

JS obtains the parameter value of the URL hyperlink example code_javascript skills

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

var url = location.href;
//Get keyword Parameter value
var es=/keyword=/;
es.exec(url);
var result=RegExp.rightContext;


For example:
Copy code The code is as follows:

var url = location.href;
//Get the pid Parameter value
var es=/pid=/;
es.exec(url);
var pid=RegExp.rightContext;

var aurl = "&pid=" pid;

Copy code The code is as follows:

alert(pid);//result :&pid=37
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