2014-12-31 117 views
0

我使用的是JavaScript函數重定向窗口不同的網頁使用這個命令:窗口重定向混亂

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

這是網頁的URL,當我手動打開它:

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

而我重定向的頁面的URL是這樣的:

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

當我運行該函數時,它導致我到

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

我在做什麼?

回答

1

替換功能與其應該完全相同。由於您未使用網絡服務器,因此file:///C:/將充當主機。

爲了讓重定向到正常工作,你的代碼更改爲:

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