admin管理员组

文章数量:1344975

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];

本文标签: javascriptGet File Name and Parent Folder of URLStack Overflow