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

后端 未结 4 1806
余生分开走
余生分开走 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:38

    var uri = window.location.href.substr(window.location.protocol.length + window.location.hostname.length + 2);
    

    This code also includes GET and HASHTAGS (basically everything after hostname)

提交回复
热议问题