我想将日期格式设置为mm / dd / yyyy。我试过以下,没有一个对我有用。
谁能帮我这个?
谁能帮我这个?
参考:ui-date
<input ui-date ui-date-format="mm/dd/yyyy" ng-model="valueofdate" /> <input type="date" ng-model="valueofdate" />
Angular.js有一个内置的日期过滤器。
原文链接:https://www.f2er.com/angularjs/147031.html// 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。
编辑:
如果你想在datepicker中获得正确的格式(不清楚如果你使用datepicker或只是试图使用它的格式化),那些支持的格式字符串在这里:https://api.jqueryui.com/datepicker/