JS:如何更改輸入日期格式?
$scope.getDate = new Date();
HTML:
<div class="col-sm-4">
<input type="date" ng-model="getDate" class="form-control input-sm">
</div>
結果:10/19/2015
(在Chrome)
它很容易,不使用NG-模型。 {{getDate | date:'yyyy-MM-dd'}}
。但我需要ng-model中的'yyyy-MM-dd'格式,而不是使用日期過濾器。我怎麼解決這個問題?
http://stackoverflow.com/questions/22392328/how-to-format-date-in-angularjs –