我有一份工作正常的联系表格。但是,我正在尝试使用jQuery validation plugin检查在提交之前没有空字段,但是当我添加插件时,我不再收到任何电子邮件。
代码如下:
内置contact.html
$(document).ready(function(){
$("form").validate({
submitHandler: function() {
alert("Thank you for submitting your information.");
},
});
});
<form class="cmxform" id="myform" method="post" action="contact.php">
<fieldset>
<p><label for="cname">Name:</label> <input type="text" id="cname" name="name" maxlength="255" class="required" /></p>
<p><label for="cemail">Email:</label> <input type="text" id="cemail" name="email" maxlength="255" class="required email" /></p>
<p><label for="tel">Tel:</label> <input type="text" id="tel" name="tel" maxlength="15" class="required" /></p>
<p><label for="service">Service:</label>
<select name="service">
<option value="option1">Option1</option>
<option value="option2">Option2</option>
<option value="option3">Option3</option>
</select>
</p>
<p><label for="comments">Comments:</label><textarea class="textarea" id="comments" name="comments" rows="7" cols="1"></textarea></p>
<input type="submit" name="submit" class="button" value="Submit" />
</fieldset>
</form>
并且在contact.php内部
<?php
if(isset($_POST['submit']))
{
$name = $_POST['name'];
$email = $_POST['email'];
$tel = $_POST['tel'];
$service = $_POST['service'];
$comments = $_POST['comments'];
$header='From: '.$email."\r\n";
$header.='Content-Type: text/plain; charset=utf-8';
$msg='Message from: '.$name."\r\n";
$msg.='Email: '.$email."\r\n";
$msg.='Tel: '.$tel."\r\n";
$msg.='Interested in: '.$service."\r\n";
$msg.='Message: '.$comments."\r\n";
$msg.='Sent '.date("d/m/Y",time());
$msg.=utf8_decode('');
$to = 'example@hotmail.com, example@gmail.com, example@company.com';
$subject = 'Contact from website';
mail($to,$subject,$msg,$header);
}
header("Location: contact.html");
?>
我不知道插件使用PHP邮件功能需要进行哪些更改。我很感激,如果有人可以看看并帮我解决这个问题。提前谢谢!
答案 0 :(得分:0)
当然PHP没有任何关系。我在submitHandler函数上缺少form.submit();
。感谢jprofitt和Kai Qing。