0

我有一个由 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); 

    }
});
});

任何建议表示赞赏。

4

1 回答 1

2

timer变量的范围仅限于您的success函数,因此始终是 null您的代码清除旧超时的时间。将声明timer移到您的 AJAX 调用之外,它应该可以工作。

var timer = null;

$.ajax({
    beforeSend: function() { ... },
    success: function(data) {
        if(timer) { clearTimeout(timer) };
        timer = setTimeout(myfunction, 10000); 
    }
});
于 2014-12-21T00:58:21.133 回答