我正在关注https://github.com/eternicode/bootstrap-datepicker的指南 实现一个简单的startDate / endDate数据采集器布局。
我在小提琴中复制了示例中的代码,但它不起作用。
我是否需要导入CSS以使其工作? 如果问题不是CSS,那么阻止数据采集器出现的是什么?
这是代码的一部分: $('#date-start')。datepicker()。on('changeDate',function(ev){
if (ev.date.valueOf() > endDate.valueOf()){
$('#alert').show().find('strong').text('The start date must be before the end date.');
} else {
$('#alert').hide();
startDate = new Date(ev.date);
$('#date-start-display').text($('#date-start').data('date'));
}
$('#date-start').datepicker('hide');
});
这是小提琴的例子
http://jsfiddle.net/wadvc/
答案 0 :(得分:0)
你需要包含Bootstrap和'datepicker'插件..你的小提琴似乎没有这些。
这是一个working demo on Bootply,其中包含了Bootstrap。