如何在 jQuery Validate 中标记必填字段
我正在使用 jQuery Validate 和 xVal 来验证输入表单。这很好用。 但是,我确实想用星号 (*) 或类似的内容标记我的必填字段,以显示实际需要的字段。
我可以手动执行此操作,但由于我已经使用 xVal 生成了验证规则,所以我认为我可以根据提供的规则自动标记必填字段。
有没有办法连接到 xVal 或 jQuery Validate 来检索规则,或者以某种方式让它们标记我的必填字段?
我正在使用最新版本的 jQuery 和 jQuery Validate。
谢谢
I'm using jQuery Validate and xVal to validate in input forms. This works great.
However, I do want to mark my required fields with an asterix (*) or something like that to show which field is actually required.
I could do this by hand, but since I already generate my validation rules with xVal I thought I could mark the required fields automatically based on the provided rules.
Is there a way to hook into either xVal or jQuery Validate to retrieve the rules, or somehow make them mark my required fields?
I'm using the latest versions of jQuery and jQuery Validate.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将
required
类赋予表单元素,并使用以下代码这会将“*”附加到具有
required
类的每个元素希望它有帮助
Give the class
required
to the form elements, and use the following codeThis will attach "*" to every elements with
required
classHope it helps
这是可能的
您的代码将如下所示
This is possible
Your code will look something like this
最简单的方法可能是创建一个单独的“规则”变量,并将其传递给 jQuery 和其他函数。这个其他函数将循环遍历它并标记所有必填字段。
It is probably easiest to make a separate "rules" variable which you pass to both jQuery and some other function. This other function would loop through it and mark all required fields as such.