Home  >  Article  >  Web Front-end  >  Location.search method to obtain Url parameters on the client_javascript skills

Location.search method to obtain Url parameters on the client_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:25:281032browse
Copy code The code is as follows:

var id;
function getid()
{
var url=location.search;
var Request = new Object();
if(url.indexOf("?")!=-1)
{
var str = url. substr(1) //Remove the ? number
strs = str.split("&");
for(var i=0;i{
Request[ strs[i].split("=")[0]]=unescape(strs[i].split("=")[1]);
}
}
id=Request[" id"];
document.getElementById('td_fa').innerHTML=id "Page information";
}

This is easy to handle. . . Just pass the parameter "http://www.aaa.html?id=1" as in .net.
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