防止MVC 3验证设置集中在无效字段上。

发布于 2024-12-17 18:26:51 字数 120 浏览 1 评论 0原文

我正在使用 MVC 3 不显眼的验证。当验证触发时,它将焦点设置在第一个无效控件上。我如何阻止它这样做,我更习惯于网络表单,等效的方法是在验证控件上设置 SetFocusOnError=false

I am using MVC 3 unobtrusive validation. When validation fires it sets the focus on the first invalid control. How do i stop it doing this, i am more used to web forms and the equivalent would be to set the SetFocusOnError=false on the validation control.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蹲在坟头点根烟 2024-12-24 18:26:51

尝试设置全局选项:

$.validator.setDefaults({ 
    focusInvalid: false
});

Try setting a global option:

$.validator.setDefaults({ 
    focusInvalid: false
});
拿命拼未来 2024-12-24 18:26:51

我目前无法测试,但我记得它与此类似:

var settings = $.data($('form')[0], 'validator').settings;
settings.focusInvalid= false;

I'm not able to test at the moment, but I remember it being similar to this:

var settings = $.data($('form')[0], 'validator').settings;
settings.focusInvalid= false;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文