Polymer:更改必填字段空消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Polymer:更改必填字段空消息相关的知识,希望对你有一定的参考价值。

有一个简单的Polymer表单,带有强制输入和提交按钮。

<form id="foo-form" is="iron-form" method="post">
  <paper-input value="Foo text" required></paper-input>
  <paper-button onclick="_submit(event)">Submit</paper-button>
<form>
...
<script>
  function _submit(event) {
    Polymer.dom(event).localTarget.parentElement.submit();
  }
</script>

点击“提交”按钮后,会显示弹出消息“请填写此字段”。

问题:如何更改此消息?

检查此链接没有运气:https://elements.polymer-project.org/browse

答案

你可以在你的输入上调用myInput.setCustomValidity('My custom error message!')

这是一个html5功能:MDN page

以上是关于Polymer:更改必填字段空消息的主要内容,如果未能解决你的问题,请参考以下文章

关注表单时如何更改表单中输入标签的颜色? [复制]

如何在 WooCommerce 中更改必填字段星号颜色 [关闭]

如何更改必填 * 字段中的星号颜色

无法更改 CakePHP 2.3 中的默认错误消息

更改 CSS 样式 HTML5 表单必填属性必填消息

在 liferay 中使用 <aui:select > 自定义必填字段的错误消息