jquery 插件正则表达式
我正在使用验证引擎进行表单验证。我看到这个插件使用正则表达式来验证字段。我需要验证一个字段,如果用户输入小于 10 的值,则应显示错误警报文本。(“该值应大于或等于 10”)。
我该如何定制这个?我如何在正则表达式中设置它。对于我和 jquery 新手来说,这是一个学习曲线
I am doing form validation using Validation Engine. I see that this plugin uses regex for validating fields. I need to validate a field where, if the user enters a value less than 10, then it should show error alert text.("The value should be greater than or equal to 10").
How can I customize this? How do I set it in regex. Its a learning curve for me now and also a newbie in jquery
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有过多研究验证引擎,但正则表达式不是此类验证的正确选择。
以下似乎是您正在寻找的规则:
validate[required,custom[integer],min[10]]
Haven't looked at Validation Engine much, but regex is not the right choice for this type of validation.
The following seems to be the rule you're looking for:
validate[required,custom[integer],min[10]]