javascript – Bootstrap-switch不是事件

我有以下HTML代码(正常工作正在更改复选框的状态),我需要在更改某个复选框的状态时运行警报.

Box" checked="true" data-checkBox="VALUE1" class="alert-status"> Box" checked="true" data-checkBox="VALUE2" class="alert-status"> Box" checked="true" data-checkBox="VALUE3" class="alert-status"> Box" checked="true" data-checkBox="VALUE4" class="alert-status">

我尝试了以下组合,但我无法执行例程:

1)

$('.make-switch.input[type="checkBox"]').on('switchChange.bootstrapSwitch',function(event,state) {
          console.log(this); // DOM element
          console.log(event); // jQuery event
          console.log(state); // true | false
          alert(this);
});

2)

$('input[type="checkBox"]').on('switchChange.bootstrapSwitch',state) {
          console.log(this); // DOM element
          console.log(event); // jQuery event
          console.log(state); // true | false
          alert(this);
});

3)

$('.alert-status').on('switchChange.bootstrapSwitch',state) {
          console.log(this); // DOM element
          console.log(event); // jQuery event
          console.log(state); // true | false
          alert(this);
});

4)

$('.alert-status').on('switchChange',state) {
          console.log(this); // DOM element
          console.log(event); // jQuery event
          console.log(state); // true | false
          alert(this);
});

5)

/*$(".alert-status").click(function(event) {
          event.preventDefault();
          event.stopPropagation();
          alert($(this).attr('data-checkBox'));
});*/

我在互联网上搜索过,我查过了一些例子,我用过萤火虫,我发现无法捕捉到这个事件.谁能帮我?

我找到了这个例子,并在这个环境中进行了修改和工作,而不是在我的网站上:

http://jsfiddle.net/sumw4/13/(我添加了probeProbe类和部分代码)

谢谢.

最好的祝福

最佳答案
我认为你的代码应该工作http://jsfiddle.net/PNU45/

Box" checked="true" data-checkBox="VALUE1" class="alert-status"> Box" checked="true" data-checkBox="VALUE2" class="alert-status"> Box" checked="true" data-checkBox="VALUE3" class="alert-status"> Box" checked="true" data-checkBox="VALUE4" class="alert-status">

JavaScript的:

$('.alert-status').bootstrapSwitch('state',true);


$('.alert-status').on('switchChange.bootstrapSwitch',function (event,state) {

    alert($(this).data('checkBox'));
    //alert(event);
   // alert(state);
});

相关文章

jQuery插件的种类 1、封装对象方法 这种插件是将对象方法封装起来,用于对通过选择器获取的jQuery对象进...
扩展jQuery插件和方法的作用是非常强大的,它可以节省大量开发时间。 入门 编写一个jQuery插件开始于给...
最近项目中需要实现3D图片层叠旋转木马切换的效果,于是用到了jquery.roundabout.js。 兼容性如图: ht...
一、什么是deferred对象? 开发网站的过程中,我们经常遇到某些耗时很长的javascript操作。其中,既有异...
AMD 模块 AMD(异步模块定义,Asynchronous Module Definition)格式总体的目标是为现在的开发者提供一...