zoukankan      html  css  js  c++  java
  • layDate——设置最大日期不能超过当前日期

    例如,当前年份是2018年,实现效果如下,2018年之后年份不可操作:

    具体代码实现:

    layui.use([ 'laydate'], function () {
          var laydate = layui.laydate;
         
          //执行一个laydate实例
          laydate.render({
              elem: '#time',
              type: 'year',
              //默认显示当前日期
              value: new Date(),
              //最大日期
              max: getNowFormatDate()
          });
    
          function getNowFormatDate() {
              var date = new Date();
              var seperator1 = "-";
              var seperator2 = ":";
              var month = date.getMonth() + 1;
              var strDate = date.getDate();
              if (month >= 1 && month <= 9) {
                  month = "0" + month;
              }
              if (strDate >= 0 && strDate <= 9) {
                  strDate = "0" + strDate;
              }
              var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
                  + " " + date.getHours() + seperator2 + date.getMinutes()
                  + seperator2 + date.getSeconds();
              return currentdate;
          }
    });
  • 相关阅读:
    一般索引
    微信小程序扫码
    微信小程序
    PHPStudy设置局域网访问
    phpstudy
    爱番番
    织梦栏目url的seo处理
    织梦dedecms网站迁移搬家图文教程
    打开存储过程中的代码目录(转)
    正在载入
  • 原文地址:https://www.cnblogs.com/yangyuke1994/p/10026118.html
Copyright © 2011-2022 走看看