下拉框/单选按钮验证?
我正在为我的表单使用 jQuery 工具 (http://flowplayer.org/tools/demos/index.html) 验证器,并且想知道如何验证下拉列表和单选按钮?
有人有实施它的经验吗?
I'm using the jQuery tools (http://flowplayer.org/tools/demos/index.html) validator for my form and was wondering how to validate dropdowns and radio buttons?
Anyone had experience of implementing it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需像这样添加:
Just add it like so:
在文档中,它说您还可以对 SELECT 元素使用 required="required" 属性,但它对我来说也不起作用。
我选择使用自定义验证器函数。希望这对你有用。虽然它非常基本,但缺少一些其他考虑因素以使其更加灵活。
In the documentation it says you can also use the required="required" attribute for SELECT elements, but it's not working for me either.
I opted to use the custom validator function. Hope this works for you. It is pretty basic though, its missing some other considerations to make it more flexible.