bootstrap-datetimepicker用法总结

Posted liuer-mihou

tags:

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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" href="../static/css/bootstrap.min.css">
    <link rel="stylesheet" href="../static/css/bootstrap-datetimepicker.min.css">
</head>
<body>

<form action="" class="form-horizontal" role="form">
    <div class="input-group date form_datetime col-md-5" data-link-field="dtp_input1">
        <input class="form-control" size="16" type="text" value="" readonly="">
        <span class="input-group-addon"><span class="glyphicon glyphicon-remove"></span></span>
        <span class="input-group-addon"><span class="glyphicon glyphicon-th"></span></span>
    </div>

</form>


<script src="../static/js/jquery-1.8.3.min.js"></script>
<script src="../static/js/bootstrap.min.js"></script>
<script src="../static/plugins/bootstrap-datetimepicker.min.js"></script>
<script src="../static/plugins/bootstrap-datetimepicker.zh-CN.js"></script>

<script>


    $(.form_datetime).datetimepicker(
        language: zh-CN,
        format: yyyy-m-dd hh:ii:ss,
        weekStart: 0,//一周从哪一天开始
        todayBtn: 1,//今天按钮
        autoclose: true,//当选择一个日期之后是否立即关闭此日期时间选择器。
        todayHighlight: 1,//如果为true, 高亮当前日期。
    );

</script>
</body>
</html>

以上是关于bootstrap-datetimepicker用法总结的主要内容,如果未能解决你的问题,请参考以下文章

boostrap3 bootstrap-datetimepicker.min.js设置中文语言

bootstrap-datetimepicker 十年视图年月视图 附源码

Java中bootstrap-datetimepicker时间插件的使用

bootstrap-datetimepicker在火狐下报错的问题

使用 jQuery 和 bootstrap-datetimepicker 获取两个日期,但它们之间的日差错误

bootstrap-datetimepicker用法总结