本文介绍了需要在timepicker jquery中显示24到12个小时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我用过 $('#start_time').timepicker({ timeFormat: 'hh:mm:ss tt' });
.
但是它仍然显示24小时格式.
But it still showing the 24 hours format.
我需要在AM和PM的时间选择器中显示12小时格式.
I need to show the 12 hours format in timepicker with AM and PM.
谢谢.
推荐答案
感谢我发现问题的朋友.
Thanks friends i found issue.
该代码应类似于
$('#start_time').timepicker({ timeFormat: 'hh:mm:ss tt', showSecond:true, ampm: true });
$('#start_time').timepicker({ timeFormat: 'hh:mm:ss tt', showSecond:true, ampm: true });
这篇关于需要在timepicker jquery中显示24到12个小时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!