<%= f.label :category %><br/> <%= check_Box_tag 'category[]','1',false %> <%= label_tag 'community','community',class: 'category_select',value: '1' %> <%= check_Box_tag 'category[]','2',false %> <%= label_tag 'food','food',value: '2' %> <%= check_Box_tag 'category[]','3',false %> <%= label_tag 'music','music',value: '3' %><br/> <%= check_Box_tag 'category[]','4',false %> <%= label_tag 'education','education',value: '4' %> <%= check_Box_tag 'category[]','5',false %> <%= label_tag 'theatre','theatre',value: '5' %> <%= check_Box_tag 'category[]','6',false %> <%= label_tag 'art','art',value: '6' %><br/> <%= check_Box_tag 'category[]','7',false %> <%= label_tag 'culture','culture',value: '7' %> <%= check_Box_tag 'category[]','8',false %> <%= label_tag 'family','family',value: '8' %> <%= check_Box_tag 'category[]','9',false %> <%= label_tag 'sports','sports',value: '9' %><br/>
我希望能够将这些选项显示在我的控制器中的类别数组下,所以我命名了所有的选项category [].我想要完成的是label_tag和check_Box_tag字段来了解彼此:
<%= check_Box_tag 'community',class: 'category_select' %>
在这里,如果我点击这些单词,框也会被检查.我试图用label_tag上的值来完成这个,但是似乎不起作用.这可以实现吗