JQuery Ajax表单提交保持静态,我不明白为什么!

如何解决JQuery Ajax表单提交保持静态,我不明白为什么!

| 可能更容易看一下这个小提琴:http://jsfiddle.net/pkAGz/,
process.PHP
代码如下所示:
<?PHP
//Retrieve form data. 
//GET - user submitted data using AJAX
//POST - in case user does not support javascript,we\'ll use POST instead
$name = ($_GET[\'name\']) ? $_GET[\'name\'] : $_POST[\'name\'];
$email = ($_GET[\'email\']) ?$_GET[\'email\'] : $_POST[\'email\'];

//flag to indicate which method it uses. If POST set it to 1
if ($_POST) $post=1;

//Simple server side validation for POST data,of course,//you should validate the email
if (!$name) $errors[count($errors)] = \'Please enter a name.\';

//if the errors array is empty,send the mail
if (!$errors) {

$name = $name[array_rand($name)];

$to = \'$name <$name email adress if set>\';   
//sender
$from = $name . \' <\' . $email . \'>\';

//subject and the html message
$subject = \'Comment from \' . $name; 
$message = \'
<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"
\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">
<html xmlns=\"http://www.w3.org/1999/xhtml\">
<head></head>
<body>
<table>
    <tr><td>Name</td><td>\' . $name . \'</td></tr>
    <tr><td>Email</td><td>\' . $email . \'</td></tr>
</table>
</body>
</html>\';

//send the mail
$result = sendmail($to,$subject,$message,$from);
//echo \"\\n\\n$name has been nominated to make the tea!\\n\\n\";
//echo \"\\n\\nThey will also be notified by e-mail if you entered their address.\\n\\n\";
//if POST was used,display the message straight away
if ($_POST) {
    if ($result) echo \"\\n\\n$name has been nominated to make the tea!\\n\\nThey will also be notified by e-mail if you entered their address.\\n\\n\";
    else echo \'Sorry,unexpected error. Please try again later\';

//else if GET was used,return the boolean value so that 
//ajax script can react accordingly
//1 means success,0 means Failed
} else {
    echo $result;   
}

//if the errors array has values
} else {
//display the errors message
for ($i=0; $i<count($errors); $i++) echo $errors[$i] . \'<br/>\';
echo \'<a href=\"index.PHP\">Back</a>\';
exit;
}


//Simple mail function with HTML header
function sendmail($to,$from) {
$headers = \"MIME-Version: 1.0\" . \"\\r\\n\";
$headers .= \"Content-type:text/html;charset=iso-8859-1\" . \"\\r\\n\";
$headers .= \'From: \' . $from . \"\\r\\n\";

$result = mail($to,$headers);

if ($result) return 1;
else return 0;
}
?>
一旦AJAX请求生效,下一步就是简单地处理代码,如果输入了电子邮件地址,则向选择的人发送电子邮件-因为我想要电子邮件字段,因此在执行该操作时会遇到一些麻烦保持可选。 那么显然,我想返回随机选择的人的名字,就是这样! 谢谢, 马丁     

解决方法

将Firebug用于Firefox,或在Chrome / Safari中查看控制台。因此,您会发现自己遇到了JavaScript错误:
Uncaught ReferenceError: comment is not defined
所以脚本:
//cancel the submit button default behaviours
return false;
未执行且表单已正常发布。     

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击?
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。)
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbcDriver发生异常。为什么?
这是用Java进行XML解析的最佳库。
Java的PriorityQueue的内置迭代器不会以任何特定顺序遍历数据结构。为什么?
如何在Java中聆听按键时移动图像。
Java“Program to an interface”。这是什么意思?
Java在半透明框架/面板/组件上重新绘画。
Java“ Class.forName()”和“ Class.forName()。newInstance()”之间有什么区别?
在此环境中不提供编译器。也许是在JRE而不是JDK上运行?
Java用相同的方法在一个类中实现两个接口。哪种接口方法被覆盖?
Java 什么是Runtime.getRuntime()。totalMemory()和freeMemory()?
java.library.path中的java.lang.UnsatisfiedLinkError否*****。dll
JavaFX“位置是必需的。” 即使在同一包装中
Java 导入两个具有相同名称的类。怎么处理?
Java 是否应该在HttpServletResponse.getOutputStream()/。getWriter()上调用.close()?
Java RegEx元字符(。)和普通点?