js获取url,截取url参数,截取url后文件名

Posted EV.CHANG

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取url,截取url参数,截取url后文件名相关的知识,希望对你有一定的参考价值。

获取当前:

var url = window.location.href;

 百度为例:

var url=window.location.href;
console.info(url);
http://www.jspp.cn/testbin/apptest/app-site/explore.html;

split() 方法用于把一个字符串分割成字符串数组。 

先用split(‘?‘)把URL和参数分离: 

var url=window.location.href;
var urlArr = url.split(‘?‘);
  console.info(urlArr);

["http://www.jspp.cn/testbin/apptest/app-site/explore.html"]

 

var url=window.location.href;var urlArr = url.split(‘?‘);
var k = urlArr[0], appU = k.split(‘/‘);
console.log(k);
console.log(appU);
得到: VM363:
1 http://www.jspp.cn/testbin/apptest/app-site/explore.html
["http:", "", "www.jspp.cn", "testbin", "apptest", "app-site", "explore.html"]

0:”http:"
1:""
2:"www.jspp.cn"
3:"testbin"
4:"apptest"
5:"app-site"
6:"explore.html"
length:7

 
 
 直接那数组最后一个就是文件名:
var L = appU[appU.length - 1];
console.log(L);//拿到当前页名称 判断传递参数

得到:"explore.html"

 














以上是关于js获取url,截取url参数,截取url后文件名的主要内容,如果未能解决你的问题,请参考以下文章

js获取url并截取相应的字段,js解决url获取中文字段乱码问题

js获取当前url地址参数中文乱码问题

用JS获取当前页面的URL以及截取其中的字段

C#截取URL问题

如何用js提取字符串中(url)的某一段字符

asp截取url中的字符