设置默认选择&在Bootstrap 3单选按钮上获取选定值

时间:2015-03-04 18:11:12

标签: jquery twitter-bootstrap twitter-bootstrap-3

请你看一下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获得选定的无线电值 ?

感谢?

1 个答案:

答案 0 :(得分:0)

要将第二个选项设置为默认设置,只需将active类添加到标签中(并将其从第一个中删除)。

要了解如何使用jQuery获取所选值,请查看this answered question