使用location.pathname属性返回URL的路径名

使用location.pathname属性返回URL的路径名
Window Location Pathname
location.pathname 属性返回 URL 的路径名。
 
实例
返回当前 URL 的路径名:
 
<script>
 
document.write(location.pathname);
 
</script>
以上代码输出为:
 
/js/js-window-location.html

推荐阅读