0

我在 IIS 7.5 中托管一个 Web 应用程序,需要解析 url,以便它在应用程序名称之后给出 url 的一部分。例如,如果托管应用程序名称是testproject并且输入的 url 是http://localhost/testproject/temp/index.html我需要提取/temp/index.htmlurl 的一部分。有什么方法可以做到这一点吗?我尝试使用 javascript

4

1 回答 1

0

您需要使用window.location对象。

尝试window.location.pathname.replace('/testproject', '');

于 2013-03-03T05:23:23.937 回答