87,994
社区成员
发帖
与我相关
我的任务
分享<input type='text' class="form-control" uib-datepicker-popup="{{format}}" ng-model="register_time" is-open="popup1.opened"
ng-required="true" close-text="关闭" clear-text="清空" current-text="今天" show-button-bar="false" alt-input-formats="altInputFormats"/>
<span class="input-group-btn"><button type="button" class="btn btn-default" ng-click="open1()"><i class="glyphicon glyphicon-calendar"></i></button></span>
</div>$scope.dat = new Date();
$scope.format = "yyyy/MM/dd";
$scope.altInputFormats = ['yyyy/M!/d!'];
$scope.popup1 = {
opened:false
}
$scope.open1 = function () {
$scope.popup1.opened =true
}
