【Bootstrap】Bootstrap Datepicker使用

 

 

  插件:http://url.cn/V4S8w4javascript

  一、添加樣式和引用JS文件css

<link href="CSS/bootstrap-datetimepicker.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-1.9.1.js" type="text/javascript"></script>
<script src="js/bootstrap.js" type="text/javascript"></script>
<script src="js/bootstrap-datetimepicker.js" type="text/javascript"></script>

  若是使用漢化版,引入漢化版,這個JS也在那個下載的文件夾裏,並把language設置爲「zh-CN」:java

<script src="js/bootstrap-datetimepicker.zh-CN.js" type="text/javascript"></script>

  二、設置jquery

  format日期格式:(這個和通常的不同,開始我就設錯了,後來查了才知道)          git

  • yyyy-mm-dd
  • yyyy-mm-dd hh:ii
  • yyyy-mm-ddThh:ii
  • yyyy-mm-dd hh:ii:ss
  • yyyy-mm-ddThh:ii:ssZ

  maskInput: true, // disables the text input mask bootstrap

      pickDate: true, // disables the date picker ide

  pickTime: true, // disables de time picker this

  pick12HourFormat: false, // enables the 12-hour format time pickerurl

    pickSeconds: true, // disables seconds in the time pickerspa

  startDate: -Infinity, // set a minimum date

  endDate: Infinity // set a maximum date    

  hourStep: 小時的間隔

  minuteStep:分鐘的間隔

  secondStep:

  laguage:'en' //zh-CN 

  autoclose:是否選擇完後自動關閉

format
String. 默認值: 'mm/dd/yyyy'

日期格式, 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. 默認值:0

一週從哪一天開始。0(星期日)到6(星期六)

startDate
Date. 默認值:開始時間

The earliest date that may be selected; all earlier dates will be disabled.

endDate
Date. 默認值:結束時間

The latest date that may be selected; all later dates will be disabled.

daysOfWeekDisabled
String, Array. 默認值: '', []

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. 默認值:false

當選擇一個日期以後是否當即關閉此日期時間選擇器。

startView
Number, String. 默認值:2, 'month'

日期時間選擇器打開以後首先顯示的視圖。 可接受的值:

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. 默認值:0, 'hour'

日期時間選擇器所可以提供的最精確的時間選擇視圖。

maxView
Number, String. 默認值:4, 'decade'

日期時間選擇器最高能展現的選擇範圍視圖。

todayBtn
Boolean, "linked". 默認值: false

若是此值爲true 或 "linked",則在日期時間選擇器組件的底部顯示一個 "Today" 按鈕用以選擇當前日期。若是是true的話,"Today" 按鈕僅僅將視圖轉到當天的日期,若是是"linked",當天日期將會被選中。

todayHighlight
Boolean. 默認值: false

若是爲true, 高亮當前日期。

keyboardNavigation
Boolean. 默認值: true

是否容許經過方向鍵改變日期。

language
String. 默認值: '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. 默認值: true

當選擇器關閉的時候,是否強制解析輸入框中的值。也就是說,當用戶在輸入框中輸入了不正確的日期,選擇器將會盡可能解析輸入的值,並將解析後的正確值按照給定的格式format設置到輸入框中。

minuteStep
Number. 默認值: 5

此數值被當作步進值用於構建小時視圖。對於每一個 minuteStep 都會生成一組預設時間(分鐘)用於選擇。

pickerReferer : 不建議使用
String. 默認值: 'default' (other value available : 'input')

The referer element to place the picker for the component implementation. If you want to place the picker just under the input field, just specify input.

pickerPosition
String. 默認值: 'bottom-right' (還支持 : 'bottom-left')

此選項當前只在組件實現中提供支持。經過設置選項能夠講選擇器放倒輸入框下方。

viewSelect
Number or String. 默認值: same as minView (supported values are: 'decade', 'year', 'month', 'day', 'hour')

With this option you can select the view from which the date will be selected. By default it's the last one, however you can choose the first one, so at each click the date will be updated.

showMeridian
Boolean. 默認值: false

This option will enable meridian views for day and hour views.

initialDate
Date or String. 默認值: new Date()

You can initialize the viewer with a date. By default it's now, so you can specify yesterday or today at midnight ...
設置

  三、例子

<input id="txtDtbegin" name="dtBegin" value="<%=dt2 %>" type="text"  class="form-control">
$('#txtDtbegin').datetimepicker({
                format: 'yyyy-mm-dd hh:ii:ss',
                language: 'zh-CN',
                pickDate: true,
                pickTime: true,
                inputMask: true,
                pickerPosition: "bottom-left",
                autoclose: true
            });

 

  在下載的文件裏有部分實例。

相關文章
相關標籤/搜索