我在页面中使用button_to下载PDF文件。
= button_to "Download Report", evaluation_report_attempt_path, method: :get, class: "btn btn-primary", data: { disable_with: "Downloading..."}
这里没有发生页面重定向。下载文件后,该按钮保持禁用状态。功能完成后如何重新启用按钮?
答案 0 :(得分:0)
哟可以试试这些
$(window).unload(function() {
$.rails.enableFormElements($($.rails.formSubmitSelector));
});