仅允许带有文本输入掩码的正数
我确实设置了一个文本输入掩码,只允许 0-999 之间的数字,甚至更好的是 1-999。
所以我尝试了掩码“##0”,但不幸的是这也允许负数。有没有办法只允许正数?
此致, 恩尼拉
I true to set a text input mask which only allow numbers from 0-999, or even better 1-999.
So I tried the mask "##0", but unfortunately this also allows negative numbers. Is there a way to allow only positive numbers?
Best regards,
Enyra
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我理解你的问题,990 应该可以正常工作。这将使空格成为前两位数字允许的字符,而最后一位始终必须是数字。
990 should work just fine as far as I understand your question. This will make space an allowed character for the two first digits, and the last one is always required to be a number.