使用Materialize嵌入日历

时间:2017-09-05 17:05:38

标签: javascript php html css materialize

有没有办法将Materialise日历嵌入到页面中?我知道你可以输入一个日期选择器输入并在你点击它时显示日历,但我想在页面完全加载后立即显示日历。

1 个答案:

答案 0 :(得分:0)

HTML:

<input type="text" class="datepicker">

JS:

  $('.datepicker').pickadate({
selectMonths: true, // Creates a dropdown to control month
selectYears: 15, // Creates a dropdown of 15 years to control year,
today: 'Today',
clear: 'Clear',
close: 'Ok',
closeOnSelect: false // Close upon selecting a date,
});

Materialize Link Here