How to get request uri from location.href in javascript?

后端 未结 4 1795
余生分开走
余生分开走 2021-02-12 13:51

What I get from location.href is like this:

http://stackoverflow.com/questions/ask

But I only want to get questions/ask

4条回答
  •  不思量自难忘°
    2021-02-12 14:14

    The location object has a pathname property.

    This will give you /questions/ask and to remove the first character, use substring(1):

    var path = location.pathname.substring(1);
    

提交回复
热议问题