其他分享
首页 > 其他分享> > jquery 时间控件精确到秒,可以使用

jquery 时间控件精确到秒,可以使用

作者:互联网

页面效果:
在这里插入图片描述
在这里插入图片描述

  <script src="js/laydate/laydate.js"></script>
  开始时间: <input id="date1" placeholder="请输入日期" class="laydate-icon" onClick="laydate({istime: true, format: 'YYYY-MM-DD hh:mm:ss'})">
  结束时间:
            <input id="date2" placeholder="请输入日期" class="laydate-icon" onClick="laydate({istime: true, format: 'YYYY-MM-DD hh:mm:ss'})">
<script>
!function(){
        laydate.skin('molv');//切换皮肤,请查看skins下面皮肤库
        laydate({elem: '#date1',istime: true, format: 'YYYY-MM-DD hh:mm:ss'});//绑定元素
        laydate({elem: '#date2', istime: true,format: 'YYYY-MM-DD hh:mm:ss'});//绑定元素
    }();

    //日期范围限定在昨天到明天
    laydate({
        elem: '#hello3',
        min: laydate.now(-1), //-1代表昨天,-2代表前天,以此类推
        max: laydate.now(+1) //+1代表明天,+2代表后天,以此类推
    });
    </script>

插件代码:

链接:https://pan.baidu.com/s/1ROvrMCVfrMxyDJ8XCIyzfg
提取码:1234

有问题加微信
在这里插入图片描述

标签:jquery,控件,laydate,format,ss,DD,elem,精确,istime
来源: https://blog.csdn.net/weixin_43444977/article/details/122696493