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


//年月选择器

laydate.render({

  elem: '#test' ,

  type: 'month' ,

  change: function(value, date, endDate){

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

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

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

    }

  }

});

相关