1

使用 Bootstrap 3,以下代码用于 Radio Group。这显示为一组按钮,选中时将按钮设置为活动状态。(附加类.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>

“checked”中的正常功能是附加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>

如何纠正?我看不到代码来自的任何地方正在执行此操作。

4

0 回答 0