我有一个由 jQuery ajax 提交的表单,它有错误验证服务器端。在 beforeSend 上,我显示了一个 gif 加载器和一些加载文本,当验证发送回成功方法时,我显示了相应的错误消息。此消息在 x 秒后有超时隐藏。无论如何,当我继续单击提交按钮时,setTimeout 本身就会令人困惑,而之前的那些并没有清除。这是我正在使用的代码:
编辑
$('form').on('submit', function(e) {
e.preventDefault();
var timer = null;
$.ajax({
beforeSend; function() {
$('.response').html('Processing form, please wait...');
},
success: function(data) {
if(data.error == true) {
$('.response').html('An error occurred.');
} else {
$('.response').html('Thank you. Form submitted successfully.');
}
if(timer) { clearTimeout(timer) };
timer = setTimeout(function() {
$('.response').html('* Indicates required fields.');
}, 10000);
}
});
});
任何建议表示赞赏。