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
3 Answers
Reset to default 6Using .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
版权声明:本文标题:javascript - Get File Name and Parent Folder of URL - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743805012a2542017.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论