submitHandler和.validate()问题

时间:2013-09-21 10:18:47

标签: jquery jquery-validate

最近我遇到了将文件附加到电子邮件中的问题,我处理了,谢谢你们各位顺便说一下。现在我有下一个问题连接“固定”附加文件。 实际上有比我想象的更多的问题。 1)在下面的代码中,在验证插件中,我认为它应该调用类似于“名称:requred”的规则,但事实并非如此。为了使它工作,我必须调用form class =“required”,为什么?当我删除class =“requred”时,验证不再存在。

2)好的,所以class =“required”,小问题,验证工作正常,但是submitHandler会发生什么? ajax没有运行,网站刷新,我得到了成功的消息。我的观点是发送带附件的电子邮件而不用刷新。

3)更糟糕的是,我写入upload_file规则的“消息”(应该显示何时未上传文件)不会出现,而是将来自title属性(表单)的消息放入其中。

所以一切都不是我应该的。我修理/修理/改变什么以使其有效?请帮帮我

代码: 形式:

 <form method="post" name="formularzaplikacyjny" enctype="multipart/form-data" action="mail-attachment.php" id="formmail"> 

        <div id="imiediv"><label for="name">Imię i nazwisko: <em>*</em> </label><br>
                        <input type="text" name="name" id="name" class="required" title="Wpisz swoje imię i nazwisko" placeholder="Jan Kowalski"></div><br>

        <div id="emaildiv"><label for="email">Email: <em>*</em> </label><br>
                        <input type="text" name="email" class="required" id="email"  title="Wpisz swój adres email" placeholder="twoj_adres_email@email.com"></div><br>

        <div id="listdiv"><label for="message">List motywacyjny: <em>*</em></label><br>
                        <textarea name="message" rows="5" cols="48" class="required" id="message" title="Wpisz treść listu motywacyjnego"  placeholder="Tutaj zpowinna znaleźć się treść Twojego listu motywacyjnego" ></textarea></div>

        <div id="cvdiv"><label for="uploaded_file">Wybierz plik CV: <em>*</em></label><br>
                        <input type="file" name="uploaded_file" title="<h3>Wybierz plik CV do przesłania</h3>" class="required" id="uploaded_file"></div><br>

                        <input type="submit" value="Prześlij" name="submit" id="submitbutton">
                        </form>

                        <div id="loading-mail">
                            <h2>Wysyłamy maila.....</h2>
                          </div>

验证:

$("#formmail").validate({

   rules: {
     email: {
        required: true,
        email: true
     },
      name: {
        required: true

     }, 
     message: {
        required: true
     },
     uploaded_file: {
        requred: true
     }
   }, //koniec literału obiektowego rules
   messages: {
      email: {
         required: "<h3>Podaj adres e-mail.</h3>",
         email: "<h3>To nie jest prawidłowy <br>adres e-mail.</h3>"
       },
       name: {
         required: "<h3>Podaj swoje imię i nazwisko.</h3>"
       },
      message: {
        required: "<h3>Wpisz treść listu motywacyjnego.</h3>"
      },
      uploaded_file: {
        requred: "<h3>Prześlij plik CV</h3>"
     }
   },submitHandler: function() {


        var thisForm = $('#formmail');
        $('#formmail').fadeOut(function(){
          //Display the "loading" message
          $("#loading-mail").fadeIn(function(){
            //Post the form to the send script
            $.ajax({
              type: 'POST',
              url: thisForm.attr("action"),
              data: thisForm.serialize(),
              //Wait for a successful response
              success: function(data){
                //Hide the "loading" message
                $("#loading-mail").fadeOut(function(){
                  //Display the "success" message
                  $("#success").text(data).fadeIn();
                });
              }
            });
          });
        });
      }
    });  // koniec funkcji validate  

并发送脚本:

<?php
require "PHPMailer/class.phpmailer.php";



$mail = new PHPMailer(true); //New instance, with exceptions enabled

$mail->CharSet = "UTF-8";
$bodys="<b>Podanie od:</b> ".$_POST['name']."<br/>"."<b>Adres e-mail: </b>".$_POST['email']."<br/>"."<b>Treść listu motywacyjnego: </b><br/>".$_POST['message'];
$mail->Body =$bodys; 

$mail->IsSMTP(); // tell the class to use SMTP
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Port = 25; // set the SMTP server port
$mail->Host = "mail.xxx.linuxpl.info"; // SMTP server
$mail->Username = "username"; // SMTP server username
$mail->Password = "pass"; // SMTP server password

$mail->IsSendmail(); // tell the class to use Sendmail

$mail->AddReplyTo($_POST['email'],$_POST['name']);

$mail->From = $_POST['email']; //uzupełnij sobie
$mail->FromName = $_POST['name']; //uzupełnij sobie

$to = 'xxx@gmail.com'; //na jaki mail wysłać np ala@wp.pl



$mail->AddAddress($to);

$mail->Subject = "Nowe podanie o pracę";

$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->WordWrap = 80; // set word wrap

$mail->MsgHTML($bodys);



$plik_tmp = $_FILES['uploaded_file']['tmp_name'];
$plik_rozmiar = $_FILES['uploaded_file']['size'];
$plik_nazwa = $_FILES['uploaded_file']['name'];
if(is_uploaded_file($plik_tmp)) {   
$nazwa_g=$plik_nazwa;

move_uploaded_file($plik_tmp, 'tmp_zal/'.$nazwa_g); 
$mail->AddAttachment('tmp_zal/'.$nazwa_g, $nazwa_g);
}





$mail->IsHTML(true); // send as HTML




if(!$mail->Send())
{
echo "Błąd";
echo "Kod błędu: " . $mail->ErrorInfo;
}
else
{
echo 'Wiadomość została wysłana';

}

?>

1 个答案:

答案 0 :(得分:1)

问题1&amp; 3是因为您在required规则和消息中requred拼错了uploaded_file

对于问题2,您需要return false submitHandler取消默认表单提交

jQuery(function ($) {
    $("#formmail").validate({

        rules: {
            email: {
                required: true,
                email: true
            },
            name: {
                required: true

            }, 
            message: {
                required: true
            },
            uploaded_file: {
                required: true
            }
        }, //koniec literału obiektowego rules
        messages: {
            email: {
                required: "<h3>Podaj adres e-mail.</h3>",
                email: "<h3>To nie jest prawidłowy <br>adres e-mail.</h3>"
            },
            name: {
                required: "<h3>Podaj swoje imię i nazwisko.</h3>"
            },
            message: {
                required: "<h3>Wpisz treść listu motywacyjnego.</h3>"
            },
            uploaded_file: {
                required: "<h3>Prześlij plik CV</h3>"
            }
        },submitHandler: function() {


            var thisForm = $('#formmail');
            $('#formmail').fadeOut(function(){
                //Display the "loading" message
                $("#loading-mail").fadeIn(function(){
                    //Post the form to the send script
                    $.ajax({
                        type: 'POST',
                        url: thisForm.attr("action"),
                        data: thisForm.serialize(),
                        //Wait for a successful response
                        success: function(data){
                            //Hide the "loading" message
                            $("#loading-mail").fadeOut(function(){
                                //Display the "success" message
                                $("#success").text(data).fadeIn();
                            });
                        }
                    });
                });
            });

            return false
        }
    }); 
});

演示:Fiddle

注意:由于表单中的文件输入,ajax提交无效 - 对于某些替代提示,请参阅this answer