3

我想在 SELECT 标记中选择具有特殊颜色的选项之一。

如何使用 Rails 的 f.select 助手和 options_for_select 执行此操作?

<html>
<head>
  <style type="text/css">
    option.standard {background-color:#FFAAAA}
  </style>
</head>
<body>
  <select style="width:100px">
    <option selected="selected">1</option>
    <option>2</option>
    <option class="standard">3</option>
    <option>4</option>
    <option>5</option>
  </select>
</body>
</html>
4

1 回答 1

3

正如文档所说options_for_select,您可以这样做:

options_for_select([ 1, 2, [ 3, { :class => 'standard' }], 4, 5 ], [ 1 ])
于 2012-06-06T14:11:39.430 回答