码迷,mamicode.com
首页 > 其他好文 > 详细

layadmin 使用时间插件

时间:2020-07-21 14:09:57      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:date()   联动   focus   val   turn   xtend   type   get   日期   

    //时间插件
    layui.laydate.render({
        elem: ‘#date‘, //指定元素
        type: ‘month‘
        , value: new Date()
        , max: maxDate()
        , min: minDate()
    });

    function maxDate() {
        var now = new Date();
        return now.getFullYear() + "-" + (now.getMonth() + 1);
    }
    function minDate() { //采集四月份以后的数据
        var now = new Date(2020, 4, 1);
        return now.getFullYear() + "-" + (now.getMonth()) + "-" + (now.getDate());
    }

  

//联动   日期

    var laydate = layui.laydate;
    //开始日期
    var insStart = laydate.render({
        elem: ‘#start_date‘
        , value: new Date().getFullYear() + "-" + (new Date().getMonth() + 1) + "-" + (new Date().getDate() - 1)
        , max: maxDate()
        , min: minDate()
        , done: function (value, date) {
            //更新结束日期的最小日期
            insEnd.config.min = lay.extend({}, date, {
                month: date.month - 1
            });

            //自动弹出结束日期的选择器
            insEnd.config.elem[0].focus();
        }
    });

    //结束日期
    var insEnd = laydate.render({
        elem: ‘#end_date‘
        , value: new Date().getFullYear() + "-" + (new Date().getMonth() + 1) + "-" + (new Date().getDate() - 1)
        , max: maxDate()
        , min: minDate()
        , done: function (value, date) {
            //更新开始日期的最大日期
            insStart.config.max = lay.extend({}, date, {
                month: date.month - 1
            });
        }
    });

    function maxDate() {
        var now = new Date();
        return now.getFullYear() + "-" + (now.getMonth() + 1) + "-" + (now.getDate() - 1);
    }
    function minDate() { //采集四月份以后的数据
        var now = new Date(2020, 4, 1);
        return now.getFullYear() + "-" + (now.getMonth()) + "-" + (now.getDate());
    }

  

layadmin 使用时间插件

标签:date()   联动   focus   val   turn   xtend   type   get   日期   

原文地址:https://www.cnblogs.com/zdcblog/p/13354274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!