bootstrap-datetimepicker使用

57 篇文章 0 订阅
18 篇文章 1 订阅

使用的node.js开发,在其中使用了这个bootstrap-datetimepicker日期控件
包的下载方法1:
我是在本地下载了这个项目,然后把它放到静态文件中的,文档地址:
https://www.bootcss.com/p/bootstrap-datetimepicker/#project,直接下载zip的包
然后解压
解压后的文件
包的下载方法2:
也可以直接新建个文件夹,克隆这个项目,然后继续往下走

git clone git://github.com/smalot/bootstrap-datetimepicker.git

随后把我所需用的文件放到我的文件夹中
三个文件
还需要css的样式文件
css文件

分别放js和css文件

可能是我之前下载的控件不一样,需要依赖moment.js,
然后,在使用这个控件前需要下载moment.js

npm install moment.js --save

不过我现在的文件中是没有用到这个js的,所以这个步骤可以省略
随后,就可以在文件中引入了,但是一定要注意引入文件的顺序

<head>
  <meta charset="UTF-8">
  <title>test</title>
  <link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css">  
  <link rel="stylesheet" href="./css/bootstrap-datetimepicker.min.css">
  
  <script>let $ = window.$ = window.jQuery = require('jquery');</script>
  <script>
    require('../node_modules/bootstrap/dist/js/bootstrap.min.js');
  </script>
  <!-- <script src="../node_modules/moment/moment.js"></script> -->
  <script src="./js/bootstrap-datetimepicker.min.js"></script>
  <script src="./js/bootstrap-datetimepicker.zh-CN.js"></script>
</head>

这些文件在压缩包中都有,直接拷贝引入即可,最后这个文件zh-CN.js是在C:\bootstrap-datetimepicker-master\bootstrap-datetimepicker-master\js\locales文件夹中
然后写html

<div class="row">
              <div class='col-sm-6 col-md-5'>
                <div class="form-group">
                  <label for="startTime">生效时间</label>
                  <div class='input-group date' id='startTime'>
                    <input type='text' class="form-control" readonly="readonly" />
                    <span class="input-group-addon">
                      <span class="glyphicon glyphicon-calendar"></span>
                    </span>
                  </div>
                </div>
              </div>
            
              <div class='col-sm-6 col-md-5 col-md-offset-1'>
                <div class="form-group">
                  <label for="endTime">失效时间</label>
                  <div class='input-group date' id='endTime'>
                    <input type='text' class="form-control" readonly="readonly" />
                    <span class="input-group-addon">
                      <span class="glyphicon glyphicon-calendar"></span>
                    </span>
                  </div>
                </div>
              </div>
            </div>

js:

$('#startTime').datetimepicker({
    format: 'yyyy-mm-dd hh:ii:ss',
    weekStart: 1,
    language: 'zh-CN',
    minView: 'hour',
    autoclose: true,
    todayHighlight: 1,
    todayBtn: true,
    forceParse:true,
    clearBtn: true,
    pickerPosition:'bottom-left',
}).on("changeDate", function(ev) {
    if (ev.date) {
        $('#endTime').datetimepicker('setStartDate', new Date(ev.date.valueOf()))
      
    } else {
        $('#endTime').datetimepicker('setStartDate', );
    }
});

$('#endTime').datetimepicker({
    format: 'yyyy-mm-dd hh:ii:ss',
    weekStart: 1,
    language: 'zh-CN',
    minView: 'hour',
    autoclose: true,
    todayHighlight: 1,
    forceParse:true,
    pickerPosition:'bottom-left',
    clearBtn: true,
}).on("changeDate", function(ev) {
    if (ev.date) {
        $('#startTime').datetimepicker('setEndDate', new Date(ev.date.valueOf()))
      } else {
        $('#startTime').datetimepicker('setEndDate', new Date());
    }
});

效果:
时间控件
点击失效时间
失效时间
可以选择日期,时间,到秒,然后可以清空clear

位置有点丑,还需要研究下,不过开心的是,他终于可以成功运行了

参考网址:下面的链接中前两个对我作用最大
https://www.bootcss.com/p/bootstrap-datetimepicker/ 官方文档指南
https://blog.csdn.net/farmerxiaoyi/article/details/74295470 之前一直中文实现不了,参考这个文档就出来了
https://blog.csdn.net/qq_33368846/article/details/82223676
https://blog.csdn.net/u011127019/article/details/51725081
https://blog.csdn.net/hurtheart517/article/details/51474324

增加一条,在代码执行完,需要清空控件,可以直接这么写:
https://blog.csdn.net/rendeyishi/article/details/78125796,参考

$('#startTime').find("input").val("");
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值