标签:inview search 方式 text 结束 def toc locale arp
粗略整理,可能存在其他的方式请大家多多指教
选择年份
html
<div class="dropdown"> <label class="search-label">选择年份</label> <div class="input-daterange input-group"> <input type="text" class="input-sm yearpicker" name="year" /> </div> </div>
js
$(‘.yearpicker‘).datepicker({ startView: ‘decade‘, minView: ‘decade‘, format: ‘yyyy‘, maxViewMode: 2, minViewMode:2, autoclose: true });
只选择月份:
html
<div class="input-group col-md-4"> <span class="input-group-addon">月份</span> <div class="input-daterange input-group"> <input type="text" class="form-control input-sm monthPicker" name="month12"/> </div> </div>
js
$(‘.monthPicker‘).datepicker({ language: "zh-CN", format: ‘mm‘, autoclose: true, startView: ‘months‘, maxViewMode:‘months‘, minViewMode:‘months‘ });
另一种是:亲测有效
<div class="input-group"> <span class="input-group-addon">月份</span> <input type="text" class="input-sm form-control monthPicker" name="startTime"/> </div> $(‘.monthPicker‘).datepicker({ language: "zh-CN", format: "yyyy-mm", autoclose: true, startView:2, minView:2, maxViewMode:4, minViewMode:1 });
另外有几个属性要解释一下:
String. 默认值: ‘mm/dd/yyyy‘
日期格式, p, P, h, hh, i, ii, s, ss, d, dd, m, mm, M, MM, yy, yyyy 的任意组合。
Integer. 默认值:0
一周从哪一天开始。0(星期日)到6(星期六)
Date. 默认值:开始时间
The earliest date that may be selected; all earlier dates will be disabled.
Date. 默认值:结束时间
The latest date that may be selected; all later dates will be disabled.
Boolean. 默认值:false
当选择一个日期之后是否立即关闭此日期时间选择器。
Number, String. 默认值:2, ‘month‘
日期时间选择器打开之后首先显示的视图。 可接受的值:
Number, String. 默认值:0, ‘hour‘ 1, ‘day‘ 2, ‘month‘ 3,‘year‘ 4 ,‘10-year‘
日期时间选择器所能够提供的最精确的时间选择视图。
Number, String. 默认值:4, ‘decade‘ 表示最大的视图 比如最大可以看到10年的视图 最大可以看到一年的视图 如果你设置为年 而你希望开始展示的视图是十年 那么肯定就不行 如果你设置为天 而你希望你的minView是月 那么也肯定是不可以的
日期时间选择器最高能展示的选择范围视图。
标签:inview search 方式 text 结束 def toc locale arp
原文地址:https://www.cnblogs.com/simba-lkj/p/8488100.html