Ajax 调用捕获事件在响应视图上的数据表插件内的 Bootstrap 开关上不起作用。
$('.switch').bootstrapSwitch();
$('.switch').on('switchChange.bootstrapSwitch', function ()
{
var id =$(this).attr("attrid");
$.ajax({
type:'POST',
url:'<?php echo base_url();?>parties/party_status_ajax',
data:{'id':id,'checked':$(this).bootstrapSwitch('state')},
success: function (data)
{
$('.close').click();
$('#successmessage').html(data);
}
});
});