最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Get File Name and Parent Folder of URL - Stack Overflow

programmeradmin1浏览0评论

This javascript will get the whole path and the file name however the idea is to retrieve the file name + extension and its parent folder so it returns this:

/thisfolder/thanks.html

var url = "www.example/get/thisfolder/thanks.html";
var path = url.substring(url.indexOf('/')+1, url.lastIndexOf('.'));
alert(path)

JS Fiddle

This javascript will get the whole path and the file name however the idea is to retrieve the file name + extension and its parent folder so it returns this:

/thisfolder/thanks.html

var url = "www.example./get/thisfolder/thanks.html";
var path = url.substring(url.indexOf('/')+1, url.lastIndexOf('.'));
alert(path)

JS Fiddle

Share Improve this question edited Mar 23, 2015 at 13:57 Evan asked Mar 23, 2015 at 13:53 EvanEvan 3,5117 gold badges39 silver badges53 bronze badges 2
  • 1 FYI, this has nothing to do with jQuery ;) – sp00m Commented Mar 23, 2015 at 13:56
  • 1 this is not jquery, this is pure js – Alex Commented Mar 23, 2015 at 13:56
Add a ment  | 

3 Answers 3

Reset to default 6

Using .split(), you can select the last 2 elements and join them together after:

var url = "www.example./get/thisfolder/thanks.html";
var path = url.split('/').slice(-2).join('/'); 
alert(path);

You could split by /:

var parts = url.split("/");
var filename = parts.pop();
var parent = parts.pop();

Here is an alternative using array:

var paths = url.split("/");
var path = paths[paths.length - 2] + "/" + paths[paths.length - 1];
发布评论

评论列表(0)

  1. 暂无评论