我在表单中使用check_box_tag和jquery-mobile stylesheeting。我的带有check_box_tag的form_tag在没有jquery-mobile的情况下工作,但是当我开始使用jquery-mobile css和javascript时,check_box_tag只允许我检查一个选项。这是代码:
<%= form_tag(posts_path, :multipart => true) do %>
<div data-role="fieldcontain">
<fieldset data-role="controlgroup">
<legend>Choose terms:</legend>
<%= check_box_tag name= "agreement[]", value=1, checked = false, :id => "checkbox-1" %>
<label for="checkbox-1">I agree</label>
<%= check_box_tag name= "agreement[]", value=2, checked = false, :id => "checkbox-2" %>
<label for="checkbox-2">I agree without preconditions</label>
</fieldset>
</div>
为什么我不能在使用jquery-mobile css和javascript时在UI中同时选中这两个复选框?如何将一组参数传递给Rails服务器?