请你看一下this Bootstrap 3 Radio button example并告诉我为什么我无法为第二个选项设置默认选择的收音机?
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-default active">
<input type="radio" name="options" id="option1" autocomplete="off"> opt 1
</label>
<label class="btn btn-default">
<input type="radio" name="options" id="option2" autocomplete="off" checked="checked"> opt 2
</label>
<label class="btn btn-default">
<input type="radio" name="options" id="option3" autocomplete="off"> opt 3
</label>
</div>
如您所见,我已将第二个选项设置为:
<input type="radio" name="options" id="option2" autocomplete="off" checked="checked"> opt 2
但checked="checked"
没有做好这项工作!
你还可以告诉我如何通过jquery获得选定的无线电值
?
感谢?
答案 0 :(得分:0)
要将第二个选项设置为默认设置,只需将active
类添加到标签中(并将其从第一个中删除)。
要了解如何使用jQuery获取所选值,请查看this answered question。