我正在使用Bootstrap-Switch,文档说明选项可以在初始化时作为对象传递。 enter link description here
以下是选项列表:enter link description here
所以我的代码看起来像这样:
var options = {
onText: "Yes",
onColor: 'primary',
offColor: 'danger',
offText: "No",
animate: true,
};
$("[name='radioGroup1']").bootstrapSwitch(options);
并且所有切换工作正常,但没有任何默认值被选项覆盖。
有人有任何关于这可行的例子吗?
答案 0 :(得分:5)
问题是我没有检查我使用的Bootstrap-Switch版本。上面的代码在第3版中运行良好