使用Meteor中的Materialize包(materialize:materialize),我使用了日期选择器,左边有一些日期错误。
在页面渲染中我得到了:
Template.clientEntry.onRendered(function() {
$('select').material_select();
$('.datepicker').pickadate({
selectMonths: true, // Creates a dropdown to control month
selectYears: 40 // Creates a dropdown of 15 years to control year
});
});
HTML:
<div class="input-field col s2">
<label class="active">Birth Date</label>
<input type="date" class="datepicker" id="birthdate-demo">
</div>
单击该字段时,其呈现如下。它功能很好,但看起来并不好看。我做错了什么?
答案 0 :(得分:0)
原则上我默认在CSS中对表行进行编号。日期选择器上的日历必须是一个表,因此它试图对每一行进行编号。我无法改变Meteor中日期选择器上的CSS,因此我不得不重构所有表格,默认情况下不进行编号并添加一个类来编号。