layui 日历选中日期,自动填充
时间:2019-06-03 12:38:04
收藏:0
阅读:464


//年月选择器
laydate.render({
elem: ‘#test‘ ,
type: ‘month‘ ,
change: function(value, date, endDate){
$("#test").val(value);
if($(".layui-laydate").length){
$(".layui-laydate").remove();
}
}
});
原文:https://www.cnblogs.com/zerozq/p/10966543.html
评论(0)