我需要一个文本字段,按键盘返回,我有类错误(在我的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
}
此行为
如果
由于