2

我在页面中使用 button_to 来下载 PDF 文件。

= button_to "Download Report", evaluation_report_attempt_path, method: :get, class: "btn btn-primary", data: { disable_with: "Downloading..."}

这里没有发生页面重定向。下载文件后,该按钮保持禁用状态。功能完成后如何重新启用按钮?

4

1 回答 1

0

哟可以试试这些

$(window).unload(function() {
  $.rails.enableFormElements($($.rails.formSubmitSelector));
});
于 2017-12-15T05:15:02.757 回答