我尝试从脚本文件中获取路径,以便在脚本内部使用但没有最终文件名。
例如:
我所有的" window.location"不行,在我的测试中,我明白了 " http://www.domain.com" 要么 " final_filename.php"
如何在没有最后一个final_filename的情况下获得所有子文件夹的路径?
答案 0 :(得分:0)
var pathParts = window.location.pathname.split('/');
var path = window.location.pathname.replace(pathParts[pathParts.length-1],'');