这个插件有24小时的时间格式吗?

时间:2013-10-16 11:23:13

标签: javascript jquery time

我有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
    });

2 个答案:

答案 0 :(得分:1)

在选项中使用24小时:

timeFormat: "HH:mm"

上午12点,上午:

timeFormat: "hh:mm"

或者使用H:i 24小时,h:i持续12小时

确切的选项和格式取决于您的库/插件,但主要是因为hH

data-options=\'{"mode": "timebox", "overrideTimeFormat": 24, "timeFormat": "H:i"}\'

答案 1 :(得分:0)