0

我正在努力弄清楚如何在 jquery mobile 中为表单传递复选框信息。在表单中,我有以下一组复选框供用户选择他们想要的俱乐部:

<li data-role="fieldcontain">
  <fieldset data-role="controlgroup" data-type="horizontal">
    <legend>Select Set?</legend>
    <option value=""></option>
    <input type="checkbox" name="t123_irons" id="t123_irons" class="custom" value="3">
    <label for="t123_irons">3</label>
    <input type="checkbox" name="t124_irons" id="t124_irons" class="custom" value="4">
    <label for="t124_irons">4</label>
    <input type="checkbox" name="t125_irons" id="t125_irons" class="custom" value="5">
    <label for="t125_irons">5</label>
    <input type="checkbox" name="t126_irons" id="t126_irons" class="custom" value="6">
    <label for="t126_irons">6</label>
    <input type="checkbox" name="t127_irons" id="t127_irons" class="custom" value="7">
    <label for="t127_irons">7</label>
    <input type="checkbox" name="t128_irons" id="t128_irons" class="custom" value="8">
    <label for="t128_irons">8</label>
    <input type="checkbox" name="t129_irons" id="t129_irons" class="custom" value="9">
    <label for="t129_irons">9</label>
    <input type="checkbox" name="t12pw_irons" id="t12pw_irons" class="custom" value="PW">
    <label for="t12pw_irons">PW</label>
  </fieldset>
</li>

我不知道在我的评论表单上放什么来获得选中的复选框,因为在 jQuery mobile 中,复选框组都有不同的 ID 和复选框组的名称。这就是我想如果他们有一个组我会如何获得该组统一名称/标识:

echo (!empty($_REQUEST['t12_irons'])) ? "<div class='reviewItem'><span class='reviewTitle'>In Set:</span>{$_REQUEST['t12_irons']}</div>" : ""; 
4

0 回答 0