Jump to content
  • 0

Форма и Submit (Jquery)


korjik
 Share

Question

Всем привет! ;)  Ребята, у меня тут скрипт есть, который использует Jquery.. сразу приведу его:

$("#multiform").submit(function(e) {        var formObj = $(this);        var formURL = formObj.attr("action");            var formData = new FormData($(this)[0]);            $.ajax({                url: formURL,                type: "POST",                data: formData,                dataType: "json",                mimeType: "multipart/form-data",                contentType: false,                cache: false,                processData: false,                success: function(data, textStatus, jqXHR) {                    $(".inline-red-error").html("");                    if (data.result === "false") {                        update_add_captcha();                        $("#code").val("");                        $.each(data.error, function(index, value) {                            $("."+value[0]+" .inline-red-error").html(value[1]);                        });                        $("html, body").animate({scrollTop: '140%'}, 200);                    }                    else                    {                        if (data.result === "true") {                            window.location.href = "/";                        } else {                            alert(data.error);                        }                    }                                                        },                error: function(jqXHR, textStatus, errorThrown) {                    alert(textStatus);                    $("#multiform").resetForm();                } 	                   });            e.preventDefault();    });    $("#multiform").submit();

Все бы ничего, через Data передаются поля моей формы, обрабатываются PHP, и выдается в виде json_encode(array("result" => "true")) при удачной обработке. Но, например, когда одно из полей я оставляю пустое, и нажимаю кнопку-обработчик, у меня специально выдается ошибка.. мол введите в то-то и то поле. Хорошо, наверное просто забыли. Вводим какой-либо текст в поле, и.. ура, у нас происходит добавление в базу данных, то, что в PHP-скрипте прописано при json_encode(array("result" => "true")). Но проблема- в таблицу mysql добавляется сразу две одинаковые строчки. Беда в том, что при каждом json_encode(array("result" => "false")) у меня дублируется форма.. сама себя.. если я буду 5 раз нажимать на кнопку с пустыми полями в форме, а потом введу все - то в базу заносится сразу.. около 16. Пробовал сделать .ResetForm(); да не особо помогло.. не пойму в чем проблема, ребят. Надеюсь все доступно изложил.. Скрипт повторяется по несколько раз, получается..

Edited by korjik
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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