Files
orico-official-website-old/public/frontend/layui-main/docs/laydate/examples/limit.md
2024-10-29 14:04:59 +08:00

1.6 KiB
Executable File

限定可选日期
前后若干天可选
限定可选时间
这里以控制在 9:30-17:30 为例
<script> layui.use(function(){ var laydate = layui.laydate; // 限定可选日期 var ins22 = laydate.render({ elem: '#ID-laydate-limit-1', min: '2016-10-14', max: '2080-10-14', ready: function(){ ins22.hint('日期可选值设定在
2016-10-14 到 2080-10-14'); } }); // 前后若干天可选,这里以前后 7 天为例 laydate.render({ elem: '#ID-laydate-limit-2', min: -7, max: 7 }); // 限定可选时间 laydate.render({ elem: '#ID-laydate-limit-3', type: 'time', min: '09:30:00', max: '17:30:00', btns: ['clear', 'confirm'] }); }); </script>