我有jQuery.ptTimeSelect插件,这似乎对我的项目有益。 不确定的是,有一个24小时的时间格式,因为我遇到的例子[http://pttimeselect.sourceforge.net/example/index.html] [1]
[1]:http://pttimeselect.sourceforge.net/example/index.html只有12小时的时间格式。
下面的是上述网站的代码段
$('input[name="time"]')
.ptTimeSelect({
containerClass: undefined,
containerWidth: undefined,
hoursLabel: 'Hour',
minutesLabel: 'Minutes',
setButtonLabel: 'Set',
popupImage: undefined,
onFocusDisplay: true,
zIndex: 10,
onBeforeShow: undefined,
onClose: undefined
});
答案 0 :(得分:1)
在选项中使用24小时:
timeFormat: "HH:mm"
上午12点,上午:
timeFormat: "hh:mm"
或者使用H:i
24小时,h:i
持续12小时
确切的选项和格式取决于您的库/插件,但主要是因为h
和H
。
data-options=\'{"mode": "timebox", "overrideTimeFormat": 24, "timeFormat": "H:i"}\'
答案 1 :(得分:0)