layui日历控件添加js校验后 页面点击提交后,点击日历插件不起作用


 
 

页面点击提交后,日历插件因为验证问题,导致input失去焦点所以点击不起作用

需要在js里面增加这两个属性即可,亲测好用

trigger: 'click',
isInitValue: false

<script>
  layui.use(['laydate'],function(){
     var laydate = layui.laydate;//将日期直接嵌套在指定容器中
     laydate.render({
       elem: '#end_time',
        type: 'datetime',
        trigger: 'click',
        isInitValue: false,
        min:minDate()
     });
   });
   function minDate(){
     var now = new Date();
    return now.getFullYear()+"-" + (now.getMonth()+1) + "-" + now.getDate();
  }
 </script>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM