2014-01-13 58 views
-1

在我的網站(site1)上,我創建了一個填寫並自動提交的表單(Site2)。但是,當它被提交時,操作頁面是(站點2)。我想自動重定向到(站點1)。我正在使用HTML/Javascript ...我該怎麼辦填寫表格後Autoredirect我的頁面

+0

怎麼樣使用AJAX和所有沒有進行重定向,無刷新提交? –

+0

顯示您的代碼... –

+0

使用window.location.replace(「http://stackoverflow.com」); – laaposto

回答

0

爲什麼不使用PHP? 站點1:

$url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; //*get the URL //* 

<form action="site2" method="post"> 
<input type="hidden" id="url" value="$url" /> 
<input type="submit" /> 
</form> 

站點2:

$url=$_POST['url']; 
//* do the form stuff //* 
header('location:'.$url.'');