目前正在尝试使用标准的日期选择器,但将其与输入掩码结合使用,以便在用户需要时更容易手动输入日期。
目前的问题是,当我添加掩码时,会发生以下两种情况之一,或者在字段中输入日期不起作用(意味着一旦我完成它就会删除字段中的值) OR 它成功更新了模型值,但当我打开datepicker
时,它被设置为年1500
。
plunk同时具有蒙版和未蒙版的输入版本。
HTML
<input type="text" class="form-control" datepicker-popup="MM/dd/yyyy" ng-model="dt" is-open="opened" min-date="'2010-01-02'" max-date="dt" ng-required="true" close-text="Close" show-weeks="false" show-button-bar="false" ui-mask="99/99/9999" />
<button type="button" class="btn btn-default" ng-click="open($event)"><i class="glyphicon glyphicon-calendar"></i></button>
JS
.controller('DatepickerDemoCtrl', function ($scope) {
$scope.dt = new Date();
$scope.open = function($event) {
$event.preventDefault();
$event.stopPropagation();
$scope.opened = true;
};
});
答案 0 :(得分:0)
你不需要面具,因为api会为你做这件事
<input class='form-control' data-provide='datepicker' data-date-format='yyyy-mm-dd'>
答案 1 :(得分:0)
datetimepicker master是解决方案
jQuery('#datetimepicker_mask').datetimepicker({
timepicker:false,
mask:true, // '9999/19/39 29:59' - digit is the maximum possible for a cell
});