gpt4 book ai didi

javascript - 重新启用使用 disable_with 禁用的链接

转载 作者:可可西里 更新时间:2023-11-01 02:31:32 25 4
gpt4 key购买 nike

如何手动重新启用被 Rails 的 disable_with 功能禁用的链接(不是表单元素)?

最佳答案

重新启用链接的调用与表单元素略有不同。它实际上将处理程序绑定(bind)到 click 事件,以阻止其他任何事情发生。我能够通过 investigating how the jquery-ujs library 解决这个问题.

要逆转这种效果,只需在 jQuery 对象上使用 enableElement 方法即可:

$.rails.enableElement($('a[data-disable-with]'));


使用 Turbolinks,它还有助于监视 'page:change' 事件而不是 window.unload:

$(document).on('page:change', function() {
$.rails.enableElement($('a[data-disable-with]'));
});

关于javascript - 重新启用使用 disable_with 禁用的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17295187/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com