0

我在我的项目中使用Bootstrap Switch来显示警告标志。每次我尝试动态地将 switch 的值从 false 设置为 true 时,它​​都不会进入.bootstrapSwitch().on方法。它可以很好地动态地将开关状态从 false 更改为 true。小提琴下面-

http://jsfiddle.net/aanurn0j/

4

1 回答 1

3

将第三个参数设置为 false 并且它可以工作。

$('#toggleSwitchOn').click(function () {
    $('#bootstrapswitch').bootstrapSwitch('state', true, false);
});

jsFiddle

于 2015-08-12T11:00:27.117 回答