gpt4 book ai didi

ruby-on-rails - 将样式类添加到 select_country 字段

转载 作者:行者123 更新时间:2023-12-04 03:37:00 25 4
gpt4 key购买 nike

Ruby on Rails 4。

我安装了 gem 'country_select', '~> 1.3.1' 并且下拉菜单有点奇怪。我找不到有关向字段添加样式类的文档。

我需要在 JS 中使用的 id,并且我正在尝试将 Bootstrap 类与该字段一起使用。任何下拉类都会很好:

<%= f.label :ship_country, "Country:" %><br>
<%= f.country_select :ship_country, {class: "dropdown", :id => "payment_ship_country"} %>

这显示了一个丑陋的默认选择类,它还添加了“class”和“id”作为选择选项,因此语法明显偏离了。有什么想法吗?

最佳答案

classidhtml 选项,它们应该作为第三个参数传递给 country_select 方法。第二个参数是要在下拉列表中显示的选项列表,这就是为什么您在下拉列表中看到 idclass 作为 optional 而不是应用为html 选项。

您可以执行以下操作:

<%= f.country_select :ship_country, {}, {class: "dropdown", :id => "payment_ship_country"} %>

供您引用,请查看 country_select 文档中的以下示例:

Supplying additional html options:

country_select("user", "country", { priority_countries: ["GB", "FR"] }, { selected: "GB", class: 'form-control' })

这应该从 here 开始工作:

<%= f.country_select :ship_country, priority_countries = ["United States"], options = {}, html_options = {:class => "input-lg", :id => "payment_country"} %>

关于ruby-on-rails - 将样式类添加到 select_country 字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24828727/

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