layui 日历选中日期,自动填充

//年月选择器

laydate.render({

  elem: '#test' ,

  type: 'month' ,

  change: function(value, date, endDate){

    $("#test").val(value);

    if($(".layui-laydate").length){

      $(".layui-laydate").remove();

扫描二维码关注公众号,回复: 6338658 查看本文章

    }

  }

});

猜你喜欢

转载自www.cnblogs.com/zerozq/p/10966543.html