需要写在layui.use()里。
laydate.render({
elem: '#time1',
min:new Date().toLocaleString(), // 设置,当日前不能选择
done: function (data) {
// 点击确定后触发事件console.log(data),会输出当前选中的日期
}
});
laydate.render({
elem: '#time2'
});
year | 年选择器 | 只提供年列表选择 |
month | 年月选择器 | 只提供年、月选择 |
date | 日期选择器 | 可选择:年、月、日。type默认值,一般可不填 |
time | 时间选择器 | 只提供时、分、秒选择 |
datetime | 日期时间选择器 | 可选择:年、月、日、时、分、秒 |
其它参数:点击查看