嗨,我在玩 angular ui 时间选择器 http://angular-ui.github.io/bootstrap/
当我使用它时,我的日期晚了 1 小时,我该如何更改它,为什么?
JS
$scope.dateStart = new Date();
$scope.dateStart.setUTCHours(7);
$scope.dateStart.setUTCMinutes(0);
HTML
<div class="form-group">
<label class="control-label">Start</label>
<timepicker data-ng-model="dateStart" hour-step="1" minute-step="15" show-meridian="false"></timepicker>
</span>
</p>
</div>
当我运行它时显示时钟 08:00 但我将其设置为 07:00,如您所见,当我将其设置为例如。gui {{dateStart}} 上的 10:00 显示“2015-01-20T09:00:17.382Z”而不是 T10:/