我正在寻找一个 jquery 表单验证插件,它可以将验证错误作为“警报”给出

发布于 2024-09-28 20:42:12 字数 1539 浏览 5 评论 0原文

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

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

发布评论

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

评论(2

沙与沫 2024-10-05 20:42:12

您可以修改 jQuery 验证插件

$('form').validate({
              errorPlacement: function(error, element) {                
                 alert(error.text());
               }
          }); 

由 Microsoft 托管

alert() 可能对屏幕阅读器有用(引用?),但对其他人来说却令人沮丧。还有人同意吗?

You can modify the jQuery validation plugin.

$('form').validate({
              errorPlacement: function(error, element) {                
                 alert(error.text());
               }
          }); 

Hosted by Microsoft.

alert() may be useful for screen readers (citation?) but they are frustrating for everyone else. Anyone else agree?

怎会甘心 2024-10-05 20:42:12

大多数验证插件都会将问题摘要写到页面上。你可以在插件中做一个简单的代码更改,只做一个alert(),而不是jquery使用.html()编写它。mod

不应该太痛苦,并且一些小事情可以让修改插件变得有趣。

Most of the validations plugins write out a summary of the issues onto the page. You could do a simple code change in the plugin to just do an alert() versus jquery writing it using .html()

Shouldn't be too painful of a mod, and something small to have some fun modifying a plugin.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文