# Project : bootstrap-datetimepicker
======================================
[![Build Status](https://travis-ci.org/smalot/bootstrap-datetimepicker.png?branch=master)](https://travis-ci.org/smalot/bootstrap-datetimepicker)
[Homepage](http://www.malot.fr/bootstrap-datetimepicker/)
[Demo page](http://www.malot.fr/bootstrap-datetimepicker/demo.php)
# Project forked
This project is a fork of [bootstrap-datepicker project](https://github.com/eternicode/bootstrap-datepicker).
# Home
As 'bootstrap-datetimepicker' is restricted to the date scope (day, month, year), this project aims to support too the time picking (hour, minutes).
# Screenshots
## Decade year view
![Datetimepicker decade year view](https://raw.github.com/smalot/bootstrap-datetimepicker/master/screenshot/standard_decade.png)
This view allows to select the day in the selected month.
## Year view
![Datetimepicker year view](https://raw.github.com/smalot/bootstrap-datetimepicker/master/screenshot/standard_year.png)
This view allows to select the month in the selected year.
## Month view
![Datetimepicker month view](https://raw.github.com/smalot/bootstrap-datetimepicker/master/screenshot/standard_month.png)
This view allows to select the year in a range of 10 years.
## Day view
![Datetimepicker day view](https://raw.github.com/smalot/bootstrap-datetimepicker/master/screenshot/standard_day.png)
This view allows to select the hour in the selected day.
## Hour view
![Datetimepicker hour view](https://raw.github.com/smalot/bootstrap-datetimepicker/master/screenshot/standard_hour.png)
This view allows to select the preset of minutes in the selected hour.
The range of 5 minutes (by default) has been selected to restrict buttons quantity to an acceptable value, but it can be overrided by the <code>minuteStep</code> property.
## Day view - meridian
![Datetimepicker day view meridian](https://raw.github.com/smalot/bootstrap-datetimepicker/master/screenshot/standard_day_meridian.png)
Meridian is supported in both the day and hour views.
To use it, just enable the <code>showMeridian</code> property.
## Hour view - meridian
![Datetimepicker hour view meridian](https://raw.github.com/smalot/bootstrap-datetimepicker/master/screenshot/standard_hour_meridian.png)
# Example
Attached to a field with the format specified via options:
```html
<input type="text" value="2012-05-15 21:05" id="datetimepicker">
```
```javascript
$('#datetimepicker').datetimepicker({
format: 'yyyy-mm-dd hh:ii'
});
```
Attached to a field with the format specified via markup:
```html
<input type="text" value="2012-05-15 21:05" id="datetimepicker" data-date-format="yyyy-mm-dd hh:ii">
```
```javascript
$('#datetimepicker').datetimepicker();
```
As component:
```html
<div class="input-append date" id="datetimepicker" data-date="12-02-2012" data-date-format="dd-mm-yyyy">
<input size="16" type="text" value="12-02-2012" readonly>
<span class="add-on"><i class="icon-th"></i></span>
</div>
```
```javascript
$('#datetimepicker').datetimepicker();
```
As inline datetimepicker:
```html
<div id="datetimepicker"></div>
```
```javascript
$('#datetimepicker').datetimepicker();
```
# Using bootstrap-datetimepicker.js
Call the datetimepicker via javascript:
```javascript
$('.datetimepicker').datetimepicker()
```
## Dependencies
Requires bootstrap's dropdown component (`dropdowns.less`) for some styles, and bootstrap's sprites (`sprites.less` and associated images) for arrows.
A standalone .css file (including necessary dropdown styles and alternative, text-based arrows) can be generated by running `build/build_standalone.less` through the `lessc` compiler:
```bash
$ lessc build/build_standalone.less datetimepicker.css
```
## Options
All options that take a "Date" can handle a `Date` object; a String formatted according to the given `format`; or a timedelta relative to today, eg '-1d', '+6m +1y', etc, where valid units are 'd' (day), 'w' (week), 'm' (month), and 'y' (year).
You can also specify an ISO-8601 valid datetime, despite of the given `format` :
* yyyy-mm-dd
* yyyy-mm-dd hh:ii
* yyyy-mm-ddThh:ii
* yyyy-mm-dd hh:ii:ss
* yyyy-mm-ddThh:ii:ssZ
### format
String. Default: 'mm/dd/yyyy'
The date format, combination of p, P, h, hh, i, ii, s, ss, d, dd, m, mm, M, MM, yy, yyyy.
* p : meridian in lower case ('am' or 'pm') - according to locale file
* P : meridian in upper case ('AM' or 'PM') - according to locale file
* s : seconds without leading zeros
* ss : seconds, 2 digits with leading zeros
* i : minutes without leading zeros
* ii : minutes, 2 digits with leading zeros
* h : hour without leading zeros - 24-hour format
* hh : hour, 2 digits with leading zeros - 24-hour format
* H : hour without leading zeros - 12-hour format
* HH : hour, 2 digits with leading zeros - 12-hour format
* d : day of the month without leading zeros
* dd : day of the month, 2 digits with leading zeros
* m : numeric representation of month without leading zeros
* mm : numeric representation of the month, 2 digits with leading zeros
* M : short textual representation of a month, three letters
* MM : full textual representation of a month, such as January or March
* yy : two digit representation of a year
* yyyy : full numeric representation of a year, 4 digits
### weekStart
Integer. Default: 0
Day of the week start. 0 (Sunday) to 6 (Saturday)
### startDate
Date. Default: Beginning of time
The earliest date that may be selected; all earlier dates will be disabled.
### endDate
Date. Default: End of time
The latest date that may be selected; all later dates will be disabled.
### daysOfWeekDisabled
String, Array. Default: '', []
Days of the week that should be disabled. Values are 0 (Sunday) to 6 (Saturday). Multiple values should be comma-separated. Example: disable weekends: `'0,6'` or `[0,6]`.
### autoclose
Boolean. Default: false
Whether or not to close the datetimepicker immediately when a date is selected.
### startView
Number, String. Default: 2, 'month'
The view that the datetimepicker should show when it is opened.
Accepts values of :
* 0 or 'hour' for the hour view
* 1 or 'day' for the day view
* 2 or 'month' for month view (the default)
* 3 or 'year' for the 12-month overview
* 4 or 'decade' for the 10-year overview. Useful for date-of-birth datetimepickers.
### minView
Number, String. Default: 0, 'hour'
The lowest view that the datetimepicker should show.
### maxView
Number, String. Default: 4, 'decade'
The highest view that the datetimepicker should show.
### todayBtn
Boolean, "linked". Default: false
If true or "linked", displays a "Today" button at the bottom of the datetimepicker to select the current date. If true, the "Today" button will only move the current date into view; if "linked", the current date will also be selected.
### todayHighlight
Boolean. Default: false
If true, highlights the current date.
### keyboardNavigation
Boolean. Default: true
Whether or not to allow date navigation by arrow keys.
### language
String. Default: 'en'
The two-letter code of the language to use for month and day names. These will also be used as the input's value (and subsequently sent to the server in the case of form submissions). Currently ships with English ('en'), German ('de'), Brazilian ('br'), and Spanish ('es') translations, but others can be added (see I18N below). If an unknown language code is given, English will be used.
### forceParse
Boolean. Default: true
Whether or not to force parsing of the input value when the picker is closed. That is, when an invalid date is left in the input field by the user, the picker will forcibly parse that value, and set the input's value to the new, valid date, conforming to the given `format`.
### minuteStep
Number. Default: 5
The increment used to build the hour view. A button is created for each <code>minuteStep</code> minutes.
### pickerReferer : deprecated
String. Default: 'd
没有合适的资源?快使用搜索试试~ 我知道了~
ueditor-vue-cli3-demo:基于vue-cli3搭建的后台管理系统前端脚手架,集成ueditor使用
共1141个文件
js:382个
png:278个
css:172个
5星 · 超过95%的资源 需积分: 50 7 下载量 32 浏览量
2021-05-29
22:03:59
上传
评论
收藏 10.88MB ZIP 举报
温馨提示
vue-admin-demo 基于vue-cli3的前后分离框架后台web管理系统端. 说明 基于vue-cli3构建的后端管理系统WEB框架 技术 说明 官网 Vue 前端框架 Vue-Router 路由框架 Vuex 全局状态管理框架 Axios 前端HTTP框架 Element-ui 前端UI框架 UEditor 富文本编辑器 Admin-LTE 前端结构框架 说明:升级版本之后,简化了各项配置文件,丢弃了之前与后台的ajax的方式,采用更加vue的axios;对Admin-LTE和ueditor的集成更加优化,ueditor的集成使用了vue-ueditor-wrap插件,可实现数据的双向绑定和一个页面多次实例化;整体的工程更加前端化和接近前端的开发标准. 问题 Element-ui 2.7.0以上版本不支持el-table 中 row-style 返回display 官方bug
资源详情
资源评论
资源推荐
收起资源包目录
ueditor-vue-cli3-demo:基于vue-cli3搭建的后台管理系统前端脚手架,集成ueditor使用 (1141个子文件)
bootstrap.css 143KB
bootstrap.css 143KB
bootstrap.min.css 118KB
bootstrap.min.css 118KB
AdminLTE.css 108KB
AdminLTE.min.css 88KB
animate.css 64KB
supershopui.common.min.css 53KB
_all-skins.css 47KB
ueditor.css 43KB
_all-skins.min.css 40KB
common.css 40KB
font-awesome.css 37KB
ueditor.min.css 34KB
datepicker3.css 33KB
style.css 32KB
font-awesome.min.css 30KB
style.css 30KB
style.min.css 28KB
style.min.css 25KB
fullcalendar.css 22KB
_all.css 21KB
video-js.css 21KB
jqgrid.css 20KB
image.css 18KB
select2.css 17KB
select2.css 17KB
_all.css 15KB
select2-bootstrap.min.css 15KB
select2.min.css 15KB
video.css 15KB
select2.min.css 15KB
attachment.css 14KB
layer.css 14KB
layer.css 14KB
_all.css 14KB
_all.css 13KB
bootstrap-datetimepicker.css 12KB
layout.css 12KB
video-js.min.css 11KB
fullcalendar.min.css 10KB
bootstrap-datetimepicker.min.css 9KB
slider.css 8KB
bootstrap-table.css 7KB
shCoreDefault.css 7KB
bootstrap-select.css 7KB
bootstrap-switch.css 7KB
blueimp-gallery.min.css 7KB
daterangepicker.css 7KB
bootstrap-select.min.css 6KB
wizard.css 6KB
tree.css 6KB
fullcalendar.print.css 5KB
layer.css 5KB
jquery.fancybox.css 5KB
login.css 5KB
skin-black-light.css 5KB
skin-blue-light.css 4KB
bootstrap-colorpicker.css 4KB
datepicker-dev.css 4KB
skin-purple-light.css 4KB
skin-yellow-light.css 4KB
content-tab.css 4KB
skin-green-light.css 4KB
datepicker.css 4KB
skin-red-light.css 4KB
common.css 4KB
skin-black-light.min.css 4KB
skin-black.css 4KB
skin-blue-light.min.css 4KB
scrawl.css 4KB
skin-yellow-light.min.css 4KB
skin-purple-light.min.css 4KB
bootstrap-colorpicker.min.css 4KB
skin-green-light.min.css 4KB
datepicker.css 4KB
skin-blue.css 4KB
skin-red-light.min.css 4KB
style.css 3KB
skin-yellow.css 3KB
skin-purple.css 3KB
ion.rangeSlider.css 3KB
skin-black.min.css 3KB
skin-green.css 3KB
skin-red.css 3KB
style.css 3KB
style.css 3KB
skin-blue.min.css 3KB
skin-purple.min.css 3KB
skin-yellow.min.css 3KB
skin-green.min.css 3KB
codemirror.css 3KB
skin-red.min.css 3KB
bootstrap-timepicker.css 3KB
charts.css 3KB
bootstrap3-wysihtml5.css 2KB
jquery.fancybox-buttons.css 2KB
bootstrap-timepicker.min.css 2KB
background.css 2KB
yellow.css 2KB
共 1141 条
- 1
- 2
- 3
- 4
- 5
- 6
- 12
戴剑松
- 粉丝: 30
- 资源: 4603
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- (源码)基于C语言的系统服务框架.zip
- (源码)基于Spring MVC和MyBatis的选课管理系统.zip
- (源码)基于ArcEngine的GIS数据处理系统.zip
- (源码)基于JavaFX和MySQL的医院挂号管理系统.zip
- (源码)基于IdentityServer4和Finbuckle.MultiTenant的多租户身份认证系统.zip
- (源码)基于Spring Boot和Vue3+ElementPlus的后台管理系统.zip
- (源码)基于C++和Qt框架的dearoot配置管理系统.zip
- (源码)基于 .NET 和 EasyHook 的虚拟文件系统.zip
- (源码)基于Python的金融文档智能分析系统.zip
- (源码)基于Java的医药管理系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
评论1