2014-02-14 97 views
1

我有這個註冊表格。如何將輸入信息發送到action.php,而不必將用戶重定向到該頁面,然後將其重定向到此頁面。我希望表單在後臺提交。如何在不離開頁面的情況下發送表單?

<p id="message"></p> 
<form action='action.php' method='post'> 
Username: <input type='text' name='username'> 
Password: <input type='password' name='password'> 
e-mail: <input type='text' name='email'></div> 
<input type='submit' value='Register' onclick='Submit()' /> 
</form> 
<script> 
function Submit(){ 
document.getElementById("message").innerHTML = "You have been successfully registered"; 
} 
</script> 

謝謝!

+5

AJAX我的朋友,阿賈克斯:) – Alvaro

+0

你能告訴我如何使用它嗎? – nikitz

+2

https://api.jquery.com/jQuery.post/ – Naner

回答

5

http://api.jquery.com/jquery.post/ 應該幫助你做到這一點,下面是一個應該與你發佈的代碼一起工作的例子。

var data = $('form').serialize(); 
$.post("action.php", data, function() { 
    $('#message').text('You have been successfully registered'); 
}) 
相關問題