只有一些 HTMLElements 支持约束验证 api(例如,HTMLButtonElement)。我想创建一个自定义 Web 组件,它也支持约束验证 api。
下面给出了期望结果的示例:
<form>
<input name="title" required>
<custom-form-component></custom-form-component>
</form>
<script>
const form = document.querySelector('form');
form.checkValidity();
</script>
custom-form-component
可以调用setCustomValidity
自身(基于相应的用户输入上下文)并验证自身的真假。因此,对 的调用form.checkValidity()
应该根据 的结果返回真或假custom-form-component
。
正如我从文档中发现的那样(例如在 MDN 上),只有某些元素可以附加影子根。表单元素是不可能的。但是,只有表单元素支持约束验证 api。
具体问题:如何实现支持约束验证api的自定义Web组件?