通过修改Css来隐藏秒选择器
CSS 部分:
.laydate-time-list{padding-bottom:0;overflow:hidden}
.laydate-time-list>li{width:50%!important;}
.laydate-time-list>li:last-child { display: none;}
JS 部分:
layui.use('laydate', function(){
var laydate = layui.laydate;
//时间范围
laydate.render({
elem: '#test_0'
,type: 'time'
,range: true
,format: 'HH:mm' # 这里限制时间选择后只显示 时分 例如 08:05
});
});
标签:www,laydate,layui,list,选择,time,选择器
来源: https://www.cnblogs.com/T8888/p/12706502.html