Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
获取现有表单的当前 jQuery 验证器对象的正确方法是什么?
请注意,验证器是使用 jQuery Unobtrusive 验证插件配置的,因此我没有引用它。
你要:
var validator = $("#form_id").data("validator");
从文档:
validate方法返回一个Validator 对象
下一个代码将获取现有的验证器或初始化它
var validator = $("form_selector").validate();