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.
我有一个时间字段,用户可以在其中插入员工的加班时间。在这个字段中,他们可以插入任意数量的小时,但分钟必须在 00 到 59 之间。我如何使用 jQuery 掩码来制作这种掩码?
我发现该translation选项可用于在蒙版上应用一些自定义规则。所以,我使用了一个正则表达式,它在几十分钟内只允许 0 到 5 之间的数字。
translation
var time_options = { translation: { 'M': {pattern: /[0-5]/}, } }; $('.time').mask('00:M0', time_options);