3列表中的radiobox集合

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3列表中的radiobox集合相关的知识,希望对你有一定的参考价值。

  1. <p>Contact:<br/>
  2. <table class="tbl">
  3. <% cells = 0 %>
  4. <% Contact.find(:all).each do |c| %>
  5. <% cells += 1 %>
  6. <% if cells.divmod(3)[1] == 1 -%><tr><% end -%>
  7. <td><input type="radio" name="task[contact_id]" value="<%= c.id -%>"
  8. <% if @task.contact == c -%> checked="checked" <% end -%> />
  9. <%= c.name %></td>
  10. <% if cells.divmod(3)[1] == 0 -%></tr><% end -%>
  11. <% end %>
  12. </table>
  13. </p>

以上是关于3列表中的radiobox集合的主要内容,如果未能解决你的问题,请参考以下文章

Python中的列表,元祖,集合,字典

列表 字典 元组 集合

如何将嵌套列表中的值转换为集合?

Python 基础入门笔记———— 字符串列表元组集合字典

在列表,字典,集合中根据条件筛选数据

如何检查常规数组/哈希/集合/列表中的元素?