我无法切换自举开关的状态。无法理解为什么会抛出错误。我使用safari
<div class="form-group input-group pull-left" style="margin-top:0.25em;margin-left:-0.70em">
<input type="checkbox" id="cb_project_status" name="cb_project_status" class="switch" data-size="mini" data-on-color="success" data-off-text="Inactive" data-on-text="Active" data-off-color="warning">
</div>
使用JQuery我试图动态设置状态
if(dataset["PROJECT_STATUS"]=="ACTIVE"){
$('#cb_project_status').bootstrapSwitch('setState', true, true);
}else{
$('#cb_project_status').bootstrapSwitch('setState', false, true);
}
我从bootstrap-switch.min.js的第13533行抛出了上述错误 知道为什么会这样吗?