使用Bootstrap 3,以下代码用于无线电组。这显示为一组按钮,在选中时将按钮设置为活动状态。 (附上课程.active
)
HTML
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="radio" name="options" id="option1">Option 1
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option2">Option 2
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option3">Option 3
</label>
“已检查”中的正常功能是附加的active
类
<label class="btn btn-primary active">
<input type="radio" name="options" id="option1">Option 1
</label>
当使用Kendo.all.web.js时 - 除active
之外的所有类都被剥离。将按钮更改为复选框
<label class="active">
<input type="radio" name="options" id="option1">Option 1
</label>
如何纠正?我无法看到代码来自哪里,就是这样做。