【发布时间】:2012-07-02 19:32:56
【问题描述】:
我想遍历复选框组“locationthemes”并构建一个包含所有选定值的字符串。 因此,选择复选框2和4时,结果将是:“3,8”
<input type="checkbox" name="locationthemes" id="checkbox-1" value="2" class="custom" />
<label for="checkbox-1">Castle</label>
<input type="checkbox" name="locationthemes" id="checkbox-2" value="3" class="custom" />
<label for="checkbox-2">Barn</label>
<input type="checkbox" name="locationthemes" id="checkbox-3" value="5" class="custom" />
<label for="checkbox-3">Restaurant</label>
<input type="checkbox" name="locationthemes" id="checkbox-4" value="8" class="custom" />
<label for="checkbox-4">Bar</label>
我在这里检查过:http://api.jquery.com/checked-selector/ 但没有示例如何按名称选择复选框组。
我该怎么做?
【问题讨论】:
标签: javascript jquery