本文介绍了如何将默认时间设置为ionic中的time类型的html输入字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是Ionic的新手,我正在使用time类型的html输入字段来获取Ionic中的时间选择器,我想为该输入字段设置一些默认时间.我尝试了以下代码.
I am new to Ionic, I am using html input field of type time for getting time picker in Ionic, I want to set some default time to that input field. I tried the following code.
<label class="item item-input">
<span class="input-label">Time</span>
<input type="time" ng-model="demoTime">
</label>
我的控制器有:
$scope.demoTime = new Date("10:45 AM");
推荐答案
javaScript不仅有时间,我们需要提供参数ans date-times.
javaScript doesn't have times solely, we need to provide the parameter ans date-times.
您可以按照以下方式进行操作
You can do this in following way
<label class="item item-input">
<span class="input-label">Time</span>
<input type="time" ng-model="demoTime">
</label>
在您的控制器中设置这样的时间
In your controller set time like this
$ scope.demoTime =新日期(新Date().toDateString()+''+ '10:45');
$scope.demoTime = new Date (new Date().toDateString() + ' ' + '10:45');
这篇关于如何将默认时间设置为ionic中的time类型的html输入字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!