我有這個彈出ajax窗體,而不是發送數據並保持在同一頁面上,它發送數據,但帶我到我的文件send.php形成。這是爲什麼?我在另一個網站上正確實施了幾乎相同的表單。我不知道我做錯了什麼......ajax表單轉到另一個頁面,而不是保留在同一頁面
形式:
<form id="form" action="send.php" name="form" method="post" >
<input type="text" id="name" name="name" value="" /><br />
<input type="text" id="email" name="email" value="" /><br />
<textarea name="message" cols="4" rows="4" id="message" ></textarea><br />
<input type="submit" value="" id="submit" title="Send!"/>
</form>
AJAX:
<script type="text/javascript">
$(document).ready(function() {
$('#form').ajaxForm({
beforeSubmit: validate
});
function validate(formData, jqForm, options) {
var name = $('input[name=name]').fieldValue();
var email = $('input[name=email]').fieldValue();
var message = $('textarea[name=message]').fieldValue();
if (!name[0]) {
alert('Please enter a value for name');
return false;
}
if (!email[0]) {
alert('Please enter a value for email');
return false;
}
if (!message[0]) {
alert('Please enter a value for message');
return false;
}
else {
$("#prima_form").fadeOut(1000, function() {
$(this).html("<img src='images/de_multumire.png'/>").fadeIn(2000);
});
var message = $('textarea[name=message]').val('');
var name = $('input[name=name]').val('');
var email = $('input[name=email]').val('');
}
}
});
</script>
send.php:
<?php
if($_POST){
$email = $_POST['email'];
$name = $_POST ['name'];
$message = $_POST ['message'];
// response hash
$ajaxresponse = array('type'=>'', 'message'=>'');
try {
// do some sort of data validations, very simple example below
$all_fields = array('name', 'email', 'message');
foreach($all_fields as $field){
if(empty($_POST[$field])){
throw new Exception('Required field "'.ucfirst($field).'" missing input.');
}
}
// ok, if field validations are ok
// now Send Email, ect.
// let's assume everything is ok, setup successful response
$subject = "New Contact";
//get todays date
$todayis = date("l, F j, Y, g:i a") ;
$message = " $todayis \n
Attention: \n\n
Please see the message below: \n\n
Email Address: $email \n\n
Message: $message \n\n
";
$from = "From: $email\r\n";
//put your email address here
mail("[email protected]", $subject, $message, $from);
//prep json response
$ajaxresponse['type'] = 'success';
$ajaxresponse['message'] = 'Thank You! Will be in touch soon';
} catch(Exception $e){
$ajaxresponse['type'] = 'error';
$ajaxresponse['message'] = $e->getMessage();
}
// now we are ready to turn this hash into JSON
print json_encode($ajaxresponse);
exit;
}
?>
我的js控制檯給出這個:
[17:38:03.840] [cycle] terminating; zero elements found by selector @ http://sociallab.ro/js/jquery_003.js:10
--
[17:38:16.012] POST http://sociallab.ro/send.php [HTTP/1.1 200 OK 218ms]
[17:38:16.204] The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the page must to be declared in the document or in the transfer protocol. @ http://sociallab.ro/send.php
謝謝!
這裏是你如何發送表單與ajax(這,順便說一下,你沒有這樣做)http://stackoverflow.com/a/5733859/982924 – RASG
我設法讓它與該示例一起工作,但我無法弄清楚在使用該代碼提交之前如何驗證每個輸入... –