gpt4 book ai didi

ruby-on-rails - Rails button_to-将CSS类应用于按钮

转载 作者:行者123 更新时间:2023-12-03 10:22:01 25 4
gpt4 key购买 nike

这很愚蠢,但我只是不知道如何设置由Rails button_to创建的输入元素的样式-是的,我已经一遍又一遍地阅读文档并尝试了示例。

这是我的ERB代码:

 <%= button_to "Claim", action: "claim", idea_id: idea.id, remote: true, class: 'btn btn-small'  %>

这将产生以下HTML:
<form action="/ideas/claim?class=btn+btn-small&amp;idea_id=4&amp;remote=true" class="button_to" method="post">
<div>
<input data-remote="true" type="submit" value="Claim">
<input name="authenticity_token" type="hidden" value="pU3umgqrDx3WbalfNK10c9H5B5N4OzPpohs4bWW8mow=">
</div>
</form>

而我想要的只是 input具有 class = "btn btn-small"

救命?谢谢!

最佳答案

方法 button_to 的签名为

button_to(name = nil, options = nil, html_options = nil, &block)

因此,请使用 {}区分 optionshtml_options
<%= button_to "Claim", {action: "claim", idea_id: idea.id, remote: true}, {class: 'btn btn-small'} %>

关于ruby-on-rails - Rails button_to-将CSS类应用于按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14123884/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com