更改默认电子邮件验证错误消息的正确方法是什么?

What is the proper way to change the default email validation error message?

使用 parsley.js,更改电子邮件错误验证消息的正确方法是什么 "This value should be a valid email.""That's not a valid email. Check again?"

无法在文档、示例或在线中找到简单的方法。

谢谢!

您可以在 html 元素本身中添加自定义消息。

<input type="email" class="form-control" name="email" data-parsley-trigger="change" data-parsley-error-message="YOUR CUSTOM ERROR MESSAGE HERE" required="">

示例用法:

参考:Online Documentation