作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将日期格式设置为 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 有一个内置的日期过滤器。
// 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 .
编辑:
如果您尝试在日期选择器中获取正确的格式(不清楚您是使用日期选择器还是只是尝试使用它的格式化程序),这些支持的格式字符串位于:https://api.jqueryui.com/datepicker/
关于angularjs - 如何在AngularJS中格式化日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59657113/
我是一名优秀的程序员,十分优秀!