如何在没有文档名称的情况下获取文档路径?例如:
window.document.location
给了我:http://host.com/lorem/ipsum/document.php
我只需要获得:http://host.com/lorem/ipsum/
。
非常乐意提供帮助。
答案 0 :(得分:1)
var path = window.document.location;
path = path.substr(0, path.lastIndexOf('/'));
答案 1 :(得分:1)
var loc = location.href;
loc = loc.substring(0, loc.lastIndexOf("/"));