使用javascript解析IIS托管网站的URL

时间:2013-03-03 05:21:03

标签: javascript iis-7.5

我在IIS 7.5中托管一个Web应用程序,需要解析url,以便它在应用程序名称后面提供url的一部分。例如,如果托管的应用程序名称为testproject且输入的网址为http://localhost/testproject/temp/index.html,则需要提取网址的/temp/index.html部分。有没有办法做到这一点?我尝试使用javascript

1 个答案:

答案 0 :(得分:0)

您需要使用window.location对象。

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