也许我误会了什么......?
button_to签名:
button_to(name = nil,options = nil,html_options = nil,& block)
我的按钮:
<%= button_to "Re-send pin", {action: "send_pin_again", :disabled => true} %>
仍然启用..
答案 0 :(得分:2)
也许我误解了一些事情
是的,disabled
是an html attribute。
有一些特殊的
html_options
:...
:disabled
- 如果设置为true
,则会生成一个禁用按钮。
将其放在相应的参数中。
<%= button_to "Re-send pin", {action: "send_pin_again"}, :disabled => true %>