3

这是我的代码。
尽管它已确认,但单击时不会显示任何对话框。
为什么?

看法

<%= button_tag( :name => 'destroy', :class => "btn btn-danger", :confirm => 'Are you sure?') do %>
Remove
<% end %>
4

2 回答 2

8

你需要:data => { :confirm => ... }

高温高压

于 2013-01-22T02:40:43.803 回答
3

您使用的是什么版本的导轨?

弃用选项 https://github.com/rails/rails/commit/fc092a9cba5fceec38358072e50e09250cf58840:confirm _:data => { :confirm => 'Text' }

# I am using 3.2.11 and this works 
<%= button_tag(:name => 'destroy', :class => "btn btn-danger", :data => {:confirm => 'Are you sure?'}) do %>
Remove
<% end %>

# this will output <button name="destroy" confirm="Are you sure?" class="btn btn-danger">Remove</button>
# notice confirm is a tag attribute, which won't be picked up by javascript
<%= button_tag(:name => 'destroy', :class => "btn btn-danger", :confirm => 'Are you sure?') do %>
Remove
<% end %>

如果您不使用 firebug,我强烈建议您使用它。
https://addons.mozilla.org/en-US/firefox/addon/firebug/

在深入研究 ruby​​ 之前,请务必检查输出 HTML。

于 2013-01-22T02:49:41.507 回答