How to validate with Javascript an Input text with Hours and Minutes

后端 未结 8 1068
灰色年华
灰色年华 2020-12-28 13:49

I have to build an HTML Form with an Input text field for Hours and Minutes.
Something like:

Name : [Foo]
Surname

8条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-28 13:57

    With moment.js the way is:

    const time = '23:59'
    moment(time, 'HH:mm', true).isValid()
    

提交回复
热议问题