例如,如果用户首先选择1,然后他发现自己不需要选择1。那么,他转向然后选择2和3,但是我的代码将输出1,2和3。想要的只有2和3
我的下面的代码:
<div class="column1">
<h4>Column1</h4>
<div class="box">
<input type="radio" id="option1" name="cal" value="0" style="display:none" <?php if($mobile['cal'] == 0) { echo "checked"; }?>
<label for="option1" >Disabled</label>
<input type="radio" id="option2" name="cal" value="1" style="display:none" <?php if($mobile['cal'] == 1) { echo "checked"; }?>
<label for="option2" >Enabled</label>
<input type="radio" id="option3" name="cal" value="2"style="display:none" <?php if($mobile['cal'] == 2) { echo "checked"; }?>
<label for="option3" >Read only</label>
</div>