我正在使用Bootstrap Switch:
$('input[type="checkbox"]').on('switchChange.bootstrapSwitch', function (e, state) {
var _this = e.target;
if ($(_this).is(":focus") == false) return;
_this.bootstrapSwitch('state',true);
});
我尝试使用如下代码:'if ($(_this).is(":focus") == false) return;'
来区分交换机是通过手动操作单击还是由'switchChange.bootstrapSwitch'
事件为引导开关触发,但它不起作用。
那么如何区分是通过手动操作点击开关还是由'switchChange.bootstrapSwitch'
事件触发自举开关?