如何使用ajax jquery获取最终选择值?

时间:2018-10-21 11:05:41

标签: jquery ajax api

例如,如果用户首先选择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>

0 个答案:

没有答案