我有两组 html 形式的单选按钮button
和button1
. 我正在使用下面的代码
1.保持默认值选中(question1
第一组和answer2
下一组)
2.表单提交后保持用户单选按钮选择
<div id="button_set1">
<input onClick="show_seq_lunid();" type="radio" name="button" value="Yes" <?php if(isset($_POST['button']) && $_POST['button'] == 'Yes') echo ' checked="checked"';?> checked /><label>question1</label>
<input onClick="show_list_lunid();" type="radio" name="button" value="No" <?php if(isset($_POST['button']) && $_POST['button'] == 'No') echo ' checked="checked"';?> /><label>answer1</label>
</div>
<div id="button_set2">
<input onClick="os_hpux();" type="radio" name="button1" value="Yes" <?php if(isset($_POST['button1']) && $_POST['button1'] == 'Yes') echo ' checked="checked"';?> /><label>question2</label>
<input onClick="os_others();" type="radio" name="button1" value="No" <?php if(isset($_POST['button1']) && $_POST['button1'] == 'No') echo ' checked="checked"';?> checked /><label>answer2</label>
</div>
在这里,如果我使用下面的代码,第二个单选按钮button1
在表单提交后不会粘在用户选择上,它会变回默认的选中状态。即answer2
。但是第一组单选按钮工作正常。如果我从代码中删除默认checked
选项,则表单提交后两个单选按钮都可以正常工作。如何在表单提交后保持选中单选按钮,同时使用checked
收音机的默认选项