<%--这里根据时间搜索--%>
<input type="text" style="float: left" validates="required,maxLength[20]" label="有效期" readonly
id="datepicker"/>
/*时间框*/
jQuery(function ($) {
$("#datepicker").datepicker({
showOtherMonths: true,
selectOtherMonths: true,
isRTL: true,
language: 'cn',
/*
format: 'yyyy-mm-dd',
*/
endDate:new Date(), // 不可选择之后的时间 startDate:new Date(), 是不可以选择已过时间
autoclose: true,
changeMonth: true,
changeYear: true,
showButtonPanel: true,
beforeShow: function () {
//change button colors
var datepicker = $(this).datepicker("widget");
setTimeout(function () {
var buttons = datepicker.find('.ui-datepicker-buttonpane')
.find('button');
buttons.eq(0).addClass('btn btn-xs');
buttons.eq(1).addClass('btn btn-xs btn-success');
buttons.wrapInner('<span class="bigger-110" />');
}, 0);
}
});
});
bootstrap-datepicker
最新推荐文章于 2024-09-13 22:06:59 发布