I am using Robin Herbots' excellent jQuery inputmask. How do I create a mask to allow a user to enter hours and minutes in the format 99hrs 99mins. I want the input mask to appear like __hrs __mins
Many thanks
I am using Robin Herbots' excellent jQuery inputmask. How do I create a mask to allow a user to enter hours and minutes in the format 99hrs 99mins. I want the input mask to appear like __hrs __mins
Many thanks
根据隐藏在文档中的内容,如果花时间阅读,会发现Escape Special Mask Characters
使用:99\\hr\\s 99\\min\\s
h、s 和 m 是日期时间扩展使用的特殊字符。
感谢 Pawal 提醒我 RTFM ;-)
在使用它之前,您应该简要阅读插件的文档。这是文档。
现在继续您的查询,我认为您希望用户只输入hrs
,mins
而实际上输入看起来像__hrs __mins
,所以您可以这样做,
$('#input-field-id').inputmask('99hrs99mins');
这是演示JSFiddle。
我希望它对你的事业有所帮助。
附言
在提问之前你应该遵守这些我如何问一个好问题?.