cform.js
733 字节
$(document).on('ready', function(){
"use strict";
var result;
$("#ajax-contact-form").submit(function(){
var str = $(this).serialize();
$.ajax( { type: "POST", url: "contact.php", data: str, success: function(msg){
if(msg === 'OK') // Message Sent? Show the 'Thank You' message and hide the form
{ result = '<div class="notification_ok">Your message has been sent. Thank you!<br> <a href="#" onclick="freset();return false;">send another mail</a></div>'; $("#fields").hide(); }
else
{ result = msg; }
$("#note").html(result);
}
});
return false;
});
});
function freset(){
$("#note").html('');
document.getElementById('ajax-contact-form').reset();
$("#fields").show();
}