窗口重定向混乱

时间:2014-12-31 22:52:02

标签: javascript html

我正在使用JavaScript函数使用此命令将窗口重定向到不同的网页:

window.location.replace("/EluLander/doctor/doctordash.html");

当我手动打开网页时,这是网页的网址:

file:///C:/Users/Elijah%20Spiegel/Desktop/EluLander/doctor/doctordash.html

我正在重定向的页面的网址是:

file:///C:/Users/Elijah%20Spiegel/Desktop/EluLander/Landingpage.html

当我运行该功能时,它会引导我

file:///C:/EluLander/doctor/doctordash.html

我在玩什么?

1 个答案:

答案 0 :(得分:1)

替换功能完全正常。由于您未使用网络服务器,因此file:///C:/充当主机。

要使重定向正常工作,请将代码更改为:

window.location.replace("/Users/Elijah%20Spiegel/Desktop/EluLander/doctor/doctordash.html")