Grails:如何使 ag:textfield 只接受数字或只接受字母?
我的代码中有不同的 g:textfields,我想让其中一些只接受数字或字母,但我不想验证它们,我希望它们是立即的,就像文本字段不接受一样当我尝试写一个数字时,什么都不会发生。
提前致谢!
FG
I have different g:textfields throughout my code, and I want to make some of the to only accept numbers or letters, but I don't want to validate for them, I want them to be immediate, like if the textfield does not accept numbers when I try to write one nothing should happen.
Thanks in advance!
FG
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将使用 remote-constraints 插件 以及 匹配约束 以强制执行正则表达式。
当用户关闭字段并显示错误时,它将进行验证。它还将阻止无效数据保存在服务器端。
如果您想阻止他们实际上一起输入非字母数字字符,您需要编写一个自定义 onKeyPress 函数 用于您的输入字段。
干杯
李
I'd use the remote-constraints plugin along with a matches constraint to enforce a regex.
It will validate when the user tabs off the fields and display an error. It will also stop invalid data being saved on the server side.
If you want to stop them actually typing a non alpha numeric character all together, you'll need to write a custom onKeyPress function for your input fields.
cheers
Lee