php radio group奇怪的行为

时间:2012-01-25 14:00:06

标签: php html radio-button radio-group

我在一个多选测验表格中有一组单选按钮,我在按钮上遇到了一些麻烦。 当我尝试单击除第一个单选按钮之外的任何其他单选按钮时,它会立即显示第一个单选按钮被选中,最后需要3-4次尝试才能标记所需按钮。如果您想测试它,这是我的代码:

               <form action="<?php echo $editFormAction; ?>" method="post" name="form" target="_self" id="form1">
          <table width="100%" border="0" cellpadding="2" cellspacing="0">
                <tr>
                  <td class="greentitle">Question 1</td>
                  <td>
                  <label>
                    <input type="radio" name="environment" value="1" />1
                    <input type="radio" name="environment" value="2" />2
                    <input type="radio" name="environment" value="3" />3
                    <input type="radio" name="environment" value="4" />4
                    <input type="radio" name="environment" value="5" />5
                  </label>
                  </td>
                </tr>
                <tr>
                  <td class="greentitle">Question 2</td>
                  <td>
                  <input name="speed" type="radio" value="1" />1
                  <input name="speed" type="radio" value="2" />2
                  <input name="speed" type="radio" value="3" />3
                  <input name="speed" type="radio" value="4" />4
                  <input name="speed" type="radio" value="5" />5
                  </td>
                </tr>
                <tr>
                  <td class="greentitle">Question 3</td>
                  <td>
                  <input name="quality" type="radio" value="1" />1
                  <input name="quality" type="radio" value="2" />2
                  <input name="quality" type="radio" value="3" />3
                  <input name="quality" type="radio" value="4" />4
                  <input name="quality" type="radio" value="5" />5 
                  </td>
                </tr>
                <tr>
                  <td class="darkgrey">&nbsp;</td>
                  <td><input name="submit" type="submit" class="formmed" id="submit" value="Submit" tabindex="5"  style="width:200px;"/></td>
                </tr>
              </table>
        </form>

1 个答案:

答案 0 :(得分:3)

我已经完成了你的代码。 从第一个广播(name="environment")组中删除标签标记。然后它会正常工作。