需要验证引擎帮助

发布于 2024-11-16 05:16:27 字数 161 浏览 2 评论 0原文

我在文本框上使用 jQuery 验证引擎进行验证。当用户单击“提交”而没有实际提交数据时,会显示错误。问题是,如果用户意外单击该文本框,然后单击网站上的任何其他位置,则会显示错误,并一直显示,直到用户刷新页面。我正在使用 ASP.net MVC 3。

谁能告诉我如何让错误在 10 秒后消失?

I am using jQuery validation engine on a Textbox for Validation. When a user clicks submit without actually submitting data, an error shows up. The problem is that if a user accidently clicks on that textbox and then clicks on any other place on the site an error shows and remains showing until the users refreshs the page. I am using ASP.net MVC 3.

Can anyone show me the way to let the error disappear after 10 seconds?

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

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

发布评论

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

评论(1

极致的悲 2024-11-23 05:16:27

我不太明白你的问题,但你可以这样做

jQuery('.text-box').bind('blur',function(){
          var e=$(this);
          window.setTimeout(function(){
                e.closest('.field-validation-error').hide();
          },10000);
});

i didnt understand your problem much but you can do this

jQuery('.text-box').bind('blur',function(){
          var e=$(this);
          window.setTimeout(function(){
                e.closest('.field-validation-error').hide();
          },10000);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文