使用 Prototype.js 和 Scriptaculous.js 进行表单验证
我想仅使用 prototye.js 和 scriptaculous.js 在表单字段上应用电子邮件、电话号码等验证。 有可用的教程吗? 我不想使用 jquery、zapatec 等库。我只想使用两个文件 Prototype.js 和 Scriptaculous.js。
请帮忙。
I want to apply validations like email,phone no etc on my form fields using only prototye.js and scriptaculous.js. Is there any tutorials available? I don't want to use libraries such as jquery, zapatec etc. I want to use only two files Prototype.js and Scriptaculous.js.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
原型和/或脚本中没有“内置”验证。 但是您可以基于这些脚本构建一些帮助程序。 看看 http://ajaxian.com/archives/really-使用原型轻松进行字段验证。
始终记住,客户端验证是为了方便用户(并在某种程度上减少网络负担)错误请求的流量),但“真正的”验证必须在服务器端完成。
There's no validation "built into" prototype and/or scriptaculous. But you can build some helpers based on those scripts. Take a look at http://ajaxian.com/archives/really-easy-field-validation-with-prototype.
Always keep in mind that client-side validation is for the user's convenience (and to some extend to reduce network traffic for bad requests) but the "real" validation has to be done server-side.
另一个不错的工具是 JSValidate。
Another decent one is JSValidate.