使用 jQuery 在 Rails 2.3.11 中绑定 ajax 回调

发布于 2025-01-04 23:35:14 字数 710 浏览 0 评论 0原文

我有一个remote_form_for。现在:onclick我想禁用提交按钮,而ajax:complete我想重新启用按钮。

:onclick 禁用工作正常,但使用 ajax:complete 事件重新启用它不起作用。

有什么想法吗?

代码来了,

(function(jQuery){
    jQuery.fn.disableWith = function(options){
        var settings = jQuery.extend({
            disable_event : function(e){
                e.preventDefault();
                return false;
            }
        }, options);

    this.bind('click', function(){
        jQuery(this).click(settings.disable_event);
    });
    this.bind("ajax:complete", function(){
        jQuery(this).unbind('click', settings.disable_event);
    });

    return this;
    };
})(jQuery);

I have a remote_form_for. Now :onclick I want to disable the submit button and on ajax:complete I want to enable the buttons back.

:onclick disable is working fine, but enable it back using ajax:complete event is not working.

Any thoughts?

Here comes the code,

(function(jQuery){
    jQuery.fn.disableWith = function(options){
        var settings = jQuery.extend({
            disable_event : function(e){
                e.preventDefault();
                return false;
            }
        }, options);

    this.bind('click', function(){
        jQuery(this).click(settings.disable_event);
    });
    this.bind("ajax:complete", function(){
        jQuery(this).unbind('click', settings.disable_event);
    });

    return this;
    };
})(jQuery);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心舞飞扬 2025-01-11 23:35:14

您使用了错误的事件 - 尝试 ajaxComplete

this.bind("ajaxComplete", function(){
    jQuery(this).unbind('click', settings.disable_event);
});

Ajax 事件文档

You are using the wrong event - try ajaxComplete :

this.bind("ajaxComplete", function(){
    jQuery(this).unbind('click', settings.disable_event);
});

Docs on Ajax Events

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文