HTML5 国际化
如何更改 HTML5 的消息(或者它会根据浏览器的语言自动更改?)
例如:
<!DOCTYPE HTML>
<html>
<body>
<form action="demo_form.asp" method="get">
E-mail: <input type="email" name="user_email" /><br />
<input type="submit" />
</form>
</body>
</html>
当我运行此代码时(来自 W3schools) 在 Opera 并写一个无效的电子邮件地址,上面写着
Please enter a valid email address
如何将其更改为另一种语言而不是英语,或将警告更改为我想要的 想?
How can I change the messages of HTML5 (or doses it change according to browser's language automatically?)
For example:
<!DOCTYPE HTML>
<html>
<body>
<form action="demo_form.asp" method="get">
E-mail: <input type="email" name="user_email" /><br />
<input type="submit" />
</form>
</body>
</html>
When I run this code (from W3schools) at Opera and write a non valid e-mail address it says
Please enter a valid email address
How can I change it to another language instead of English or change the warning to what I want?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯,有不同的选择。
您可以使用 formnovalidate 禁用表单(或字段)的表单验证,并使用 javascript(当然还有服务器端)提供自定义错误消息。
您可以使用 javascript 并使用
.setCustomValidity()
方法来提供(自定义)错误消息,但其目的是向字段添加额外的规则。您可以使用
x-moz-errormessage
设置自定义错误消息。但使用它时您需要知道这不是标准。Well there are different options.
You can disable the form validation of the form (or the field) with formnovalidate and provide a custom error message with javascript (and serverside ofcourse).
You can use javascript and use the
.setCustomValidity()
method to provide a (custom) error message but it is intended to add extra rules to the field.You can use
x-moz-errormessage
to set a custom errormessage. But using this you need to know that this is not a standard.目前 HTML(5) 中没有内置的国际化解决方案,所有提案似乎都死了。不过,您可能会发现被动本地化 JavaScript 库有一些用处。可以在此处找到在线演示。
There are no built-in internationalisation solutions currently in HTML(5) and all proposals seem dead. However you may find the Passive Localisation JavaScript library of some use. Online demonstration can be found here.