设置 jquery 验证错误文本的样式

发布于 2024-10-21 15:22:04 字数 258 浏览 4 评论 0原文

我正在使用 jquery 验证 并希望自定义显示的错误消息。

默认情况下,验证错误显示在输入字段的右侧。我特别希望所有错误都出现在我们一直使用的样式化 div 的页面顶部。

这对于库来说是可能的还是在这种情况下编写我自己的验证内容是一个更好的选择?

有什么想法吗?谢谢。

I'm using jquery validation and would like customize the error messages that are displayed.

By default the validation errors appear to the right the input fields. I specifically would like to have all the errors to appear at the top of the page in a styled div we have been using.

Is this possible with library or would it be a better option to just write my own validation stuff this situation?

Any thoughts? Thanks.

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

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

发布评论

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

评论(1

习ぎ惯性依靠 2024-10-28 15:22:04

嗨雷
我确信您现在已经找到了它,但如果没有,可以使用 errorLabelContainer 选项来完成。请参阅 jquery.validation 文档

例如

$("#myform").validate({
  errorLabelContainer: "#messageBox"
  });

Hi Ray
I'm sure you've found it by now but if not, this can be done using the errorLabelContainer option. See jquery.validation docs.

e.g.

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