在jquery中需要按下返回键盘后验证

时间:2013-09-24 08:59:22

标签: jquery forms jquery-validate

我需要一个文本字段,按键盘返回,我有类错误(在我的CSS,正确的行为)。

如果我插入文本然后按返回键,表单提交但文本字段再次返回类错误

在我的javascript中我使用它来清除我的表单

$("#formid")[0].reset();

更多代码

<form method="post"  id="form_commento-3" class="form_fancybox_commenti">
    <span style="position: relative">
       <input type="text" id="commento_form_3_commento" name="commento_form_3[commento]" required="required" maxlength="100"    class="small" placeholder="comment..." />
    </span>
    <button type="submit" class="submit-button" id="submit_form_commenti">Comment</button>
 </form>

更多 表格在jQuery Validate within jQuery .each()

非常相似

我的js:

$('.form_fancybox_commenti').each(function(index, numero_form) {

    $("#commento_form_"+index+"_commento").addClass("alphanumeric");

    $(this).validate({
        submitHandler: function(form) {
            console.log("form "+form);
            save(form);

        }
    });
});

function save(form) {
    var parametri = {};
    parametri = $("#" + form.id).serializeArray();

    //    i try with
    //$("#" + form.id)[0].reset();
    //$("#form_commento-"+id).trigger('reset')
    //$("#form_commento-"+id).get(0).reset();


save via node.js

}

此行为

  • 正确填写文字字段
  • 按返回键
  • 表单提交,我的文本域确定

如果

  • 未正确填写文本字段(错误jquery validate)
  • 修复文本字段并按返回键
  • 表单提交,我的textfield返回并再次出现类错误

由于

0 个答案:

没有答案