我想将日期格式设置为mm / dd / yyyy。我试过以下,没有一个对我有用。
谁能帮我这个?
谁能帮我这个?
<input ui-date ui-date-format="mm/dd/yyyy" ng-model="valueofdate" /> <input type="date" ng-model="valueofdate" />
Angular.js有一个内置的日期过滤器。
// in your controller: $scope.date = '20140313T00:00:00'; // in your view,date property,filtered with date filter and format 'MM/dd/yyyy' <p ng-bind="date | date:'MM/dd/yyyy'"></p> // produces 03/13/2014
您可以看到支持的日期格式in the source for the date filter。@H_404_3@
编辑:@H_404_3@
如果你想在datepicker中获得正确的格式(不清楚如果你使用datepicker或只是试图使用它的格式化),那些支持的格式字符串在这里:https://api.jqueryui.com/datepicker/@H_404_3@