admin管理员组文章数量:1345164
After having a search around I could not find exactly what I want, I am looking to validate a form client side using the Jquery library and some form of validation plugin. I was hoping that some one could advise me on whether there are any validation plugins out there that do not use generic error messages, as my form is laid out with no room for these errors, and I also I want the validator to to for correct content as well.
Basically I want to be able to check the field on each key press and blur and if the fields validates for it to gain a green border, and if it does not validate for it to gain a red border, any one know of a plugin that can do this?
Thanks
sico87
After having a search around I could not find exactly what I want, I am looking to validate a form client side using the Jquery library and some form of validation plugin. I was hoping that some one could advise me on whether there are any validation plugins out there that do not use generic error messages, as my form is laid out with no room for these errors, and I also I want the validator to to for correct content as well.
Basically I want to be able to check the field on each key press and blur and if the fields validates for it to gain a green border, and if it does not validate for it to gain a red border, any one know of a plugin that can do this?
Thanks
sico87
Share Improve this question asked Jan 23, 2009 at 14:09 UddersUdders 6,99627 gold badges108 silver badges207 bronze badges5 Answers
Reset to default 5I don't know what you searched for, but the Validation plugin (first google result for "jquery validation") does exactly what you want... Read the docs that e with it.
Heres a jQuery plugin that I created and has live form validation also.
http://www.geektantra./2009/09/jquery-live-form-validation/
I use this Form Validation plugin: http://docs.jquery./Plugins/Validation. While I'm not sure about the "live" validation, you could hide the "generic" errors using CSS:
label.error{ display: none; }
I know the plugin supports AJAX, so perhaps could be extended to do the live validation you want?
My plugin uses client-side when possible, fallbacks on seamless AJAX when client-side is not really a good idea (validates_uniqueness, etc). Peep the README, you just do like you always did in you model - validatious-on-rails handles the rest using the excellent library "Validatious".
You find the plugin/gem here:
http://github./grimen/validatious-on-rails
Feel free to message me if you got any issues - should be stable though. =)
i like this one. as you can customize the function to validate.
本文标签: javascriptJquery Live ValidationStack Overflow
版权声明:本文标题:javascript - Jquery Live Validation - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743791015a2539568.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论