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.
我需要验证文本框中的时间字段。我使用了这个正则表达式。
var reg_exp = /^([0-9\:]*)$/;
但它允许添加:文本框中的任何位置。如何使其添加:仅在文本的第三位。例如:11* : *34
采用
^\d{2}:\d{2}$
而是匹配两个数字,然后是冒号和另外两个数字。
为了验证时间是否正确00:00,23:59您可以使用:
00:00
23:59
/^(?:[01][0-9]|2[0-3]):(?:[0-5][0-9])$/