使用 Javascript 在域部分之后获取“任何内容”部分的最佳方法是什么:
http://www.domain.com/anything
http://www.domain.com/#anything
http://www.domain.com/any/thing
对于http://www.domain.com/#anything我将不得不使用window.location.hash。但是对于http://www.domain.com/anything我将不得不使用window.location.pathname。
我在用着:
window.location.href.replace(window.location.origin, "").slice(1)
这个解决方案有什么注意事项吗?有没有更好的办法?