我正在使用来自atmosphere.js的rajit:bootstrap3-datepicker包来使用Meteor 1.4获取input =“text”标签上的日期,但是当我使用它改变月份时,它会永久地卡在屏幕上,并且它会重复当我再次单击输入字段时,自己(通过开发工具查看)。
我更改了屏幕的大小以查看它是否重复,并且插件会在屏幕上创建; Link to Image
我的代码在html模板(Blaze)
上看起来像这样<div class="input-group">
<span class="input-group-addon" id="basic-addon1"><i class="fa fa-calendar" aria-hidden="true"></i> Plazo</span>
<input class="form-control" id="date" name="fechaentrega" placeholder="DD/MM/AAAA" type="text" required aria-describedby="basic-addon1"/>
</div>
JS文件看起来像这样;
Template.checklist.rendered=function(){
$('#date').datepicker({
format: 'dd/mm/yyyy',
language: 'es',
startDate: new Date(),
todayHighlight: true,
weekStart: 1,
container: 'body',
orientation: 'bottom',
autoclose: true
});
}
这个“清单”模板正被导入MainLayout模板,该模板负责显示页面的主要信息,如果它以任何方式影响它。
谢谢!