zoukankan      html  css  js  c++  java
  • Bootstrap时间选择插件datetimepicker使用

    导入相关插件

    <link rel="stylesheet" href="/static/plugin/bootstrap-datetimepicker-master/css/bootstrap-datetimepicker.min.css">
    <script src="{% static '/plugin/bootstrap-datetimepicker-master/js/bootstrap-datetimepicker.min.js' %}"></script>
    <script src="{% static '/plugin/bootstrap-datetimepicker-master/js/locales/bootstrap-datetimepicker.zh-CN.js' %}"></script>

    相关body代码

    <div class="form-group">
        <label class="col-sm-3 control-label" for="classname">有效时间</label>
        <div class="col-sm-3">
            <input id="starttime" class="form-control" type="text" readonly placeholder="请选择开始时间">
        </div>
        <div class="col-sm-3">
            <input id="endtime" class="form-control" type="text" readonly placeholder="请选择结束时间">
        </div>
    </div>

    相关js代码及解释

    $('#starttime').datetimepicker(
        {
            format: 'yyyy-mm-dd hh:ii:ss', // 显示格式 精确到分
            autoclose: true, // 选完时间后,窗口自动关闭
            todayBtn: true, // 当天日期按钮
            pickerPosition: "bottom-right", // 选择框位置
            startDate: new Date(), //date之前的时间不能选
            daysOfWeekDisabled: [0, 6], // 一周的周六和周天不能选
            minView: 0, //时间精确度 [0-4]分-年
            todayHighlight: true, // 当天日期高亮
            language: 'zh-CN', // 显示语言
            minuteStep: 5, // 最小的分钟区间
            initialDate: true, // 默认时间
        });
    
    $('#endtime').datetimepicker(
        {
            format: 'yyyy-mm-dd hh:ii:ss', // 显示格式 精确到分
            autoclose: true, // 选完时间后,窗口自动关闭
            todayBtn: true, // 当天日期按钮
            pickerPosition: "bottom-right", // 选择框位置
            startDate: new Date(), //date之前的时间不能选
            daysOfWeekDisabled: [0, 6], // 一周的周六和周天不能选
            minView: 0, //时间精确度 [0-4]分-年
            todayHighlight: true, // 当天日期高亮
            language: 'zh-CN', // 显示语言
            minuteStep: 5, // 最小的分钟区间
            //showMeridian:true, // 是否显示上下午
            initialDate: true, // 默认时间
        });
     
     
  • 相关阅读:
    Leetcode 238. Product of Array Except Self
    Leetcode 103. Binary Tree Zigzag Level Order Traversal
    Leetcode 290. Word Pattern
    Leetcode 205. Isomorphic Strings
    Leetcode 107. Binary Tree Level Order Traversal II
    Leetcode 102. Binary Tree Level Order Traversal
    三目运算符
    简单判断案例— 分支结构的应用
    用switch判断月份的练习
    java基本打印练习《我行我素购物系统》
  • 原文地址:https://www.cnblogs.com/oldpai/p/9635343.html
Copyright © 2011-2022 走看看