如何为“选择”设置 html_options Ruby on Rails 中的助手?
我有下一个代码来在选择框中显示我的国家/地区表:
f.select("country_id", Country.all.collect {|p| [ p.name, p.id ] }, {:include_blank => 'Select a Country'})
并且我想在选择国家/地区时设置“onchange”操作... 我已经尝试过:
f.select("country_id", Country.all.collect {|p| [ p.name, p.id ] }, {:include_blank => 'Select a Country',:onchange=>"alert('foo')"})
但没有任何反应......
对此有什么帮助吗?
谢谢。 尼兹尔先生
I have the next code to display my countries table in a select box:
f.select("country_id", Country.all.collect {|p| [ p.name, p.id ] }, {:include_blank => 'Select a Country'})
and i want to set an 'onchange' action when a country es selected...
I've tried:
f.select("country_id", Country.all.collect {|p| [ p.name, p.id ] }, {:include_blank => 'Select a Country',:onchange=>"alert('foo')"})
but nothing happens....
any help on this?
Thanks.
Mr. Nizzle
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个助手的格式很嗨,请
尝试
并检查您版本的 html 输出
Formbuilder#select
Hi format of this helper is
so try
and also check html output of your version
Formbuilder#select