如何在 jquery 验证中向名称为数组的字段添加规则
你好,我正在使用 jquery 验证插件。我可以通过名称
示例
<input type="text" id="name" name="name">
为我的字段设置规则并设置规则,
rules: {
name: {
required:true,
minlength: 3,
maxlength: 250
}
}
但我有一个像这样的复选框组,
<input id="cooking-facilities" type="checkbox" name="additional[]" value="cooking-facilities" tabindex="123456789">
名称是 additional[]
。
但当我尝试使用它时,
rules: {
additional[]: {
required:true
}
}
它会出现错误。 复选框组
如何将 jquery 验证插件中的规则设置为我正在使用的
http://docs.jquery .com/Plugins/Validation
请帮忙.................................................
hi i am using jquery validation plugin . i can set rules to my fields by there name
example
<input type="text" id="name" name="name">
and set rules
rules: {
name: {
required:true,
minlength: 3,
maxlength: 250
}
}
but i have a checkbox group like this
<input id="cooking-facilities" type="checkbox" name="additional[]" value="cooking-facilities" tabindex="123456789">
the name is additional[]
here .
but when i try to use like
rules: {
additional[]: {
required:true
}
}
it gives errors . how can i set rules in jquery validation plugin to my check-box group
i am using
http://docs.jquery.com/Plugins/Validation
please help....................................
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有阅读文档吗?
http://docs.jquery.com/Plugins/Validation/Reference #Fields_with_complex_names_.28brackets.2C_dots.29
You did not read the docs?
http://docs.jquery.com/Plugins/Validation/Reference#Fields_with_complex_names_.28brackets.2C_dots.29