前端之家收集整理的这篇文章主要介绍了
ruby-on-rails – Rails,选择帮手,添加样式,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想做这样的事情
select :model,:attribute,:style => "some:style;"
在rails中为选择帮助器添加样式,但不起作用.
从
@L_
301_0@:
select(object,method,choices,options = {},html_options = {})
所以你的风格哈希需要是第五个参数.例如:
select(:model,@options_for_select,{ },{ :style => 'some: style' }
原文链接:https://www.f2er.com/ruby/273392.html