Dreamweaver SPRY 自定义验证格式
我想要使用 Dreamweaver spry 选项验证文本字段。我需要输入采用下面提到的格式
05632-25252525
第一个 (05632) 部分应包含最少 3 个编号,最多 6 个。
第二个 (05632) 部分应包含最少 7 个编号,最多 10 个。
我如何编写正则表达式或 Spry 中的模式。请建议
I want a textfield to validated using dreamweaver spry option. I need the input to be in the below mentioned format
05632-25252525
The first (05632) part should contain minimum 3 no's, maximum upto 6.
The second (05632) part should contain minimum 7 no's, maximum upto 10.
how can i write a regular expression or a pattern in Spry. pls suggest
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Spry 无法将其作为一个文本字段来处理。
但是,如果将其设置为两个文本字段,那就很简单了...只需将第一个文本字段设置为最少 3 个字符,最多 6 个字符,仅允许数字。将第二个设置为 min7 max10 所有数字,然后在表单发布后将它们组合起来。
Spry can't handle that as all one text field.
However, if you make it two textfields, then it's simplicity...just set the first one to have min 3 character, max 6 only allow numbers. Set the second to be min7 max10 all numbers and then just combine them after the form is posted.