Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在验证必须输入时间的文本框时遇到问题。因为只允许使用符号“:”,文本也不应该允许。
这个怎么做..
和
我正在遵循模式/^\d{1,2}:\d{2}$/
/^\d{1,2}:\d{2}$/
如果有人帮助我,将不胜感激。
提前谢谢。
尝试使用以下正则表达式来验证 HH:MM 时间格式
^([0-9]|0[0-9]|1[0-9]|2[0-3]):[0-5][0-9]$
尝试以下模式:
/^\d{2,}:\d{2}:\d{2}$/