这是我的代码。
尽管它已确认,但单击它时不会显示任何对话框。
为什么?
看法
<%= button_tag( :name => 'destroy', :class => "btn btn-danger", :confirm => 'Are you sure?') do %>
Remove
<% end %>
最佳答案
你需要 :data => { :confirm => ... }
HTH
关于ruby-on-rails - 为什么 `button tag` 不会显示对话框进行确认?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14450560/