bootstrap-datepicker changeCentury事件

bootstrap-datepicker changeCentury事件,切换世纪选择时触发的事件。

changeCentury事件

//日期控件初始化
var ops = {
    language: 'zh-CN', //设置语言
    autoclose: true, //设置选择后自动关闭
    clearBtn: true,//清除按钮
    format: "yyyy-mm-dd",//日期格式
};
$("#itxst").datepicker(ops);
$('#itxst').datepicker('setDate', new Date());
//绑定changeCentury事件
$('#itxst').datepicker().on('changeCentury', function (e) {
    console.log(e);
    $("#tips").html('触发了changeCentury事件');
});