我在HTML表单中使用这个时间选择器。目前,它采用12小时格式,并显示AM / PM
this.timeInput = UWA.createElement('input',{
"type" : "time",
"value" : "12:00",
"step" : "1800", //30 minutes
"class": "form-control eno-duedatetime-input"
}).inject(this.mInputElement);
我在检索时间时遇到问题(使用AM / PM) - 它只给我(小时:分钟)
timeInputElement.value
例如:如果时间设置为中午12:00 - 我只能检索到12:00
我需要做其中任何一个:
我更喜欢第一种选择。或者甚至我得到第二个选项的解决方案。它应该是好的。
任何人都可以请求协助。