1

我有一个带有由 ruby​​ 模型生成的标题的复选框列表。根据页面,某些复选框会被自动选中。我如何用未选中的复选框和标题隐藏其他 li?或者我将如何只显示被选中的 li div?

html:

<h3>Stores Offered In</h3>
  <ul class="multi-column-checkbox">
    <% for store in Store.all %>
        <li><%= check_box_tag "idea[store_ids][]", store.id,    
@idea.stores.include?(store) %> <%= store.name %></li>
    <% end %>
  </ul>
  <br />

检查复选框:

<input id="idea_store_ids_" type="checkbox" value="15" name="idea[store_ids][]"  
checked="checked"></input>

检查非复选框:

<input id="idea_store_ids_" type="checkbox" value="11" name="idea[store_ids][]"></input>
4

1 回答 1

1

像这样的东西应该工作:

$("input:not(:checked)").parent('li').hide();
于 2013-10-02T15:44:39.123 回答