Home  >  Article  >  Web Front-end  >  Get the javascript code of the file name and parameters in the URL address_javascript skills

Get the javascript code of the file name and parameters in the URL address_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:47:221026browse
Copy code The code is as follows:

//Get the page file name
function GetPageName()
{
var url=window.location.href;//Get the complete URL
var tmp= new Array();//Temporary variable, save the split string
tmp=url.split("/ ");//Split according to "/"
var pp = tmp[tmp.length-1];//Get the last part, that is, the file name and parameters
tmp=pp.split("?");/ /Separate parameters and file names
return tmp[0];
}
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