0
我必須將我的頁面重定向到另一個頁面,但在同一個目錄中。 例如:www.test.com/demo/test.php 我要重定向到:javascript-重定向頁面在我的網站的同一目錄
www.test.com/demo/check.php
而且因爲我有很多像開發QA生產環境,我必須保持的開始路徑,只是重定向到另一個頁面。
如果我寫:
function redirect(){
document.location = '/check.php'; //redirect me to www.test.com/check.php
}
感謝。
'document.location ='check.php'' – tymeJV 2014-11-03 19:56:30
如果你在網址的開頭省略了斜槓? 'document.location ='check.php';' – 2014-11-03 19:56:38
我可能不會正確回答你的問題,但我會刪除前面的斜槓。 – Aviator 2014-11-03 19:58:23