要实现的功能如下:业务要求让日历只有近3天可选,其它部分变灰且不可选。
代码实现 |
在html中加入如下代码:
<label class="layui-form-label" style="">
日期:
</label>
<div class="layui-input-block">
<input type="text" name="startTime" id="startTime" lay-verify="required"
lay-verType="tips" placeholder="请选择日期" value="${((job.startTime)?string('yyyy-MM-dd HH:mm:ss'))!''}"
autocomplete="off" class="layui-input" readonly="readonly">
</div>
<script>
$(function() {
let laydate = layui.laydate;
//日期时间选择器
laydate.render({
elem: '#startTime',
type: "datetime",
min: 0,
max: 3
});
});
</script>
代码块解读:
1、type可选的类型有:
year:年
month:年月
date:年月日,默认是这个
time:时分秒
datetime:年月日时分秒
2、min、max是实现功能的关键。
比如要实现只能选前2天后3天,则min=-2,max=3。
又比如只能选xxx月xxx日~xxx月xxx日的日子,直接填充日期即可。
小结 |
1、layUI是一个前端框架,同级别的有Vue、Angular、React等。
2、开发中可参考的文档如下,常用的样式怎么写,里面都写的明明白白儿的了。
https://lln.kim/layui/doc/modules/code.html
http://poweredbywww.ourphp.net/layui_doc/demo/tree.html