所以我有这个循环,下面是一个按钮,
HTML
has_and_belongs_to_many
并且在循环内是一个复选框,因此将有10行和每列复选框。
下面是一个脚本,阻止在点击时选中复选框
的js
{% for y in 1..cells %}
<tr id="{{y}}" class="rowDiv">
{% for x in 1..cells %}
<td id="{{y}}col_{{x}}" rel="{{x}}" class="cell colDiv chooser invisible
{% for placement in yourships %}
{% for cell in placement %}
{% if cell.x_pos == y and cell.y_pos == x %}
hit
{% else %}
no-ship
{% endif %}
{% endfor %}
{% endfor %}
">
<input id="check" class="posinput-checkbox" name="position" type="checkbox" data-x="{{ x }}" data-y="{{ y }}" />
</td>
{% endfor %}
</tr>
{% endfor %}
<div class="large-3 columns">
<button>Initiate</button>
</div>
问题是如何点击“已选中”复选框,如何使用按钮选中“已选中”复选框?
提前谢谢你:)