From aa5dfddf00d76c9321a189229e8dcb6eedfcae72 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 5 Feb 2022 22:08:15 +0900 Subject: 2022/01/27 時点の英語版に基づき新規翻訳 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/htmlinputelement/reportvalidity/index.md | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 files/ja/web/api/htmlinputelement/reportvalidity/index.md diff --git a/files/ja/web/api/htmlinputelement/reportvalidity/index.md b/files/ja/web/api/htmlinputelement/reportvalidity/index.md new file mode 100644 index 0000000000..cf8e1ef3b8 --- /dev/null +++ b/files/ja/web/api/htmlinputelement/reportvalidity/index.md @@ -0,0 +1,42 @@ +--- +title: HTMLInputElement.reportValidity() +slug: Web/API/HTMLInputElement/reportValidity +tags: + - API + - HTML DOM + - HTMLInputElement + - メソッド + - NeedsExample + - リファレンス + - reportValidity + - reportValidity() +browser-compat: api.HTMLInputElement.reportValidity +translation_of: Web/API/HTMLInputElement/reportValidity +--- +{{APIRef("HTML DOM")}} + +**`reportValidity()`** は {{domxref('HTMLInputElement')}} インターフェイスのメソッドで、 {{domxref("HTMLInputElement.checkValidity", "checkValidity()")}} メソッドと同じ検証のチェック手順を実行します。値が無効であった場合、このメソッドはその要素に {{domxref("HTMLInputElement.invalid_event", "invalid")}} イベントを発行し、(そのイベントがキャンセルされなければ)ユーザーに問題を報告します。 + +## 構文 + +```js +element.reportValidity(); +``` + +### 返値 + +要素を検証して問題がなければ `true` を返し、それ以外の場合は `false` を返します。 + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [学習: クライアント側フォーム検証](/ja/docs/Learn/Forms/Form_validation) +- [ガイド: 制約検証](/ja/docs/Web/Guide/HTML/Constraint_validation) +- [制約検証 API](/ja/docs/Web/API/Constraint_validation) -- cgit v1.2.3-54-g00ecf