Jump to content
  • 0

Не могу придумать как проверить submit


Sergik+
 Share

Question

$(function() {

        $( "#contact" ).validate({
            rules: {
                name: {
                required: true,
                minlength: 3
                },
                email: {
                    required: true,
                    email: true
                },
            },
                success: function(label) {
                label.text('OK!').addClass('valid');
              }
        });
    $('#contact').submit(function (){
            var data = $('#contact').serialize();
            $.ajax ({
                url: 'mail.php',
                type: 'POST',
                data: data,
                beforeSend: function () {
                    $('#submit').next().text('Отправляю');
                },
                success: function (res) {
                    if ( res = 1 ) {
                        $('#contact').find('input:not(#submit),textarea').val ('');
                        $('#submit').next().text('Отправлено');
                    } else {
                        alert ('Ошибка отправки');
                    }

                },
                error: function () {
                    alert ('Error');
                }

            });
            return false;
        });
});
 

 

Друзья я немного запутался, как видите у меня валидирутся поля но при сабмите улетают не заполненные данные,

я понимаю что можно просто проверить не пустое ли поле но может быть validation что нибудь возвращает при ошибке ?

Edited by Sergik+
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

 

 if ( res = 1 ) {

 

разве не == должно быть?

 

Хых, детская ошипочка :)

Спасибо, магия форума сработала, решил что самое простое будет проверка полей на пустоту, все неплохо работает.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy