获取没有最终文件名的当前路径

时间:2017-01-13 13:42:29

标签: java jquery

我尝试从脚本文件中获取路径,以便在脚本内部使用但没有最终文件名。

例如:

http://www.domain.com/folder/

我所有的" window.location"不行,在我的测试中,我明白了 " http://www.domain.com" 要么 " final_filename.php"

如何在没有最后一个final_filename的情况下获得所有子文件夹的路径?

1 个答案:

答案 0 :(得分:0)

var pathParts = window.location.pathname.split('/');
var path = window.location.pathname.replace(pathParts[pathParts.length-1],'');