如何在角度模型中设置默认时间值?

的HTML

<input id="starttime_mon" name="starttime_mon" ng-model="starttime[1]" ng-disabled="!search_dow_number[1]" type="time" class="form-control" />
<input id="endtime_mon" name="endtime_mon" ng-model="endtime[1]" ng-disabled="!search_dow_number[1]" type="time" class="form-control"  />


JS

$scope.starttime = new Date(1970, 0, 1, 0, 0, 0);
$scope.starttime = '00:00;
$scope.starttime[1] = new Date(1970, 0, 1, 0, 0, 0);


在上一次尝试时我得到:错误:无法设置未定义的属性'1'
我尝试过的其他事情没有得到任何结果。

最佳答案

所以new Date表示$scope.starttime不是对象,因此它不具有您尝试使用1从中获取的$scope.starttime[1]属性。

很难理解您的意思,但我认为您不需要[1]:

JS

$scope.starttime = new Date(1970, 0, 1, 0, 0, 0);

的HTML

<input id="starttime_mon" name="starttime_mon" ng-model="starttime" ...

关于javascript - 在 Angular 模态中设置默认时间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41590991/

10-11 15:47