Home  >  Article  >  Web Front-end  >  Get the value passed in the address bar using js_javascript tips

Get the value passed in the address bar using js_javascript tips

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

function GetQueryString(name)
{
var reg = new RegExp("(^|&)" name "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if(r!=null)return unescape(r[2]); return null;
}
var myurl=GetQueryString("power");
//This is getting The value named power in the address bar
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