あなたのHTMLフォーム
<form id="contactfrm" method="post" onsubmit="return false;">
....your form elements
<input type="submit" onclick="submitContact();" />
</form>
編集 :
あなたのスクリプト
次に、jqueryを使用してフォームを送信します
<script type="text/javascript">
function submitContact() {
$.facebox(function() {
$.ajax({
data: { 'name' : $('#name').val(), 'message' : $('#message').val() }, //Make sure to change these values that reflects yours.
error: function() {
$.facebox('There was error sending your message.');
},
success: function(data) {
$.facebox(data); // the data returned by contact_send.php
},
type: 'post',
url: 'contact_send.php'
});
});
}
</script>
ページの[送信]ボタンをクリックすると、このコードはフェイスボックスを開き、contact_send.phpページに送信した変数を処理し、そのページからの出力をフェイスボックスに返します。