datepicker更改未定义

时间:2015-06-01 14:00:50

标签: bootstrap-datepicker

我试图使用bootstrap datepicker,我需要事件changeDate。所以我拿了文件

$('.datepicker').datepicker()
    .on(picker_event, function(e){
        # `e` here contains the extra attributes
    });

我用changeDate事件

调整它
$('.datepicker').datepicker()
    .on(changeDate, function(e){
        alert('yolotest');
    });

令人遗憾的是,他将changeDate视为未知变量(导致错误更改未定义),而不是事件。

我现在真的陷入困境,我想知道你是否对如何使这项工作有所了解。我不明白为什么他认为changeDate是变量而不是事件(我试过changedateChangedateChangeDate,同样的错误)

1 个答案:

答案 0 :(得分:3)

你需要{change}之前的' '

$('.datepicker').datepicker()
    .on('changeDate', function(e){
        alert('yolotest');
    });