<div class="btn-group" data-toggle="buttons">
<label class="btn btn-sm btn-primary success active">
<input type="radio" name="options" id="optionFalse" checked />false
</label>
<label class="btn btn-sm btn-primary danger">
<input type="radio" name="options" id="optionTrue" />true
</label>
</div>
$('#optionTrue').button('toggle');
我已经阅读了更多问题答案,但没有一个有效。 按钮切换不起作用,我尝试添加/删除&#34;活动&#34;上课,没有效果。我使用1.10 jQuery和3.1 Bootstrap。这应该很简单,我把头发拉出来了!
答案 0 :(得分:21)
button()
... 在元素上调用 btn
$('#optionTrue').closest('.btn').button('toggle');
这将正确切换按钮并正确更新每个输入的已检查属性...
答案 1 :(得分:2)
疯狂的bootstrap docs(3.2)并没有让这更加明显,但这是我发现在代码中设置单选按钮初始状态的最简单方法。
<div class="btn-group" data-toggle="buttons">
<label id="optionFalse" class="btn btn-primary">
<input type="radio" name="options" /> false
</label>
<label id="optionTrue" class="btn btn-primary ">
<input type="radio" name="options" /> true
</label>
</div>
if (initTrue) {
$('#optionTrue').button('toggle');
}
else {
$('#optionFalse').button('toggle');
}
在阅读了关于这个主题的几十篇文章之后,似乎这些是一般的混淆点:
答案 2 :(得分:1)
document.querySelector(".btn-group input[id='optionTrue']").checked = true;