bootstrap时间插件使用方法

Posted fkcqwq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootstrap时间插件使用方法相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>bootstrap时间插件用法</title>
        <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
        <link href="https://cdn.bootcss.com/twitter-bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
        <link rel="stylesheet" type="text/css" href="css/datepicker3.css" />
        <script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
        <link href="https://cdn.bootcss.com/twitter-bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
        <script type="text/javascript" src="js/bootstrap-datepicker.js"></script>
        <script type="text/javascript" src="js/bootstrap-datetimepicker.zh-CN.js"></script>
    </head>

    <body>
        <div class="form-group">
            <label>参加工作时间 <em>*</em></label>
            <input type="text" class="form-control" readonly="readonly" data-verify data-noempty="参加工作时间不能为空" name="starttime" id="starttime" placeholder="请选择参加工作时间">
        </div>
    </body>

</html>
<script>
    $(document).ready(function() {
        $(.contact-box).each(function() {
            animationHover(this, pulse);
        });
        $(#starttime).datetimepicker({
            language: zh-CN,
            startDate: new Date(),
            format: "yyyy-mm-dd hh:ii",
            autoclose: true,
            todayBtn: true,
        }).on(changeDate, function(ev) {
            var d = $(#starttime).val();
            if(d != "") {
                $(#endtime).datetimepicker(setStartDate, $(#starttime).val());
            }
        });
        $(#endtime).datetimepicker({
            language: zh-CN,
            startDate: new Date(),
            format: "yyyy-mm-dd hh:ii",
            autoclose: true,
            todayBtn: true,
        }).on(changeDate, function(ev) {
            var d = $(#endtime).val();
            if(d != "") {
                $(#starttime).datetimepicker(setEndDate, d);
            }
        });

    });
</script>

下载demo链接:https://i.cnblogs.com/Files.aspx

以上是关于bootstrap时间插件使用方法的主要内容,如果未能解决你的问题,请参考以下文章

BootStrap实用代码片段(持续总结)

Wordpress - 将代码片段包含到布局的选定部分的插件

VIM 代码片段插件 ultisnips 使用教程

WordPress - 代码片段插件

Word 文档的优秀代码片段工具或插件?

vim代码片段插件ultisnips的使用