From b332bc6c6cad4c1dba8e99cccf73e60cd84275d7 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 20 Oct 2024 02:02:46 +0900 Subject: [PATCH] =?UTF-8?q?2024/09/11=20=E6=99=82=E7=82=B9=E3=81=AE?= =?UTF-8?q?=E8=8B=B1=E8=AA=9E=E7=89=88=E3=81=AB=E5=9F=BA=E3=81=A5=E3=81=8D?= =?UTF-8?q?=E6=96=B0=E8=A6=8F=E7=BF=BB=E8=A8=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../htmlinputelement/willvalidate/index.md | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 files/ja/web/api/htmlinputelement/willvalidate/index.md diff --git a/files/ja/web/api/htmlinputelement/willvalidate/index.md b/files/ja/web/api/htmlinputelement/willvalidate/index.md new file mode 100644 index 00000000000000..6f56d71fcc0d43 --- /dev/null +++ b/files/ja/web/api/htmlinputelement/willvalidate/index.md @@ -0,0 +1,35 @@ +--- +title: "HTMLInputElement: willValidate プロパティ" +short-title: willValidate +slug: Web/API/HTMLInputElement/willValidate +l10n: + sourceCommit: 4524e28f0aa5fe3b4da3315c40bbdc8d99653da3 +--- + +{{APIRef("HTML DOM")}} + +**`willValidate`** は {{domxref("HTMLInputElement")}} インターフェイスの読み取り専用のプロパティで、この {{htmlelement("input")}} 要素が[制約検証](/ja/docs/Web/HTML/Constraint_validation)の対象となる候補であるかどうかを示します。制約の検証を禁止する条件のいずれかに該当する場合、`false` となります。条件には次のようなものがあります。 + +- {{domxref("HTMLInputElement.type", "type")}} が `hidden`、`reset`、`button` のいずれかである +- 祖先に {{HTMLElement("datalist")}} がある +- {{domxref("HTMLInputElement.disabled", "disabled")}} プロパティが `true` である + +## 値 + +論理値です。 + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{domxref("HTMLInputElement.checkValidity()")}} +- {{HTMLElement("input")}} +- {{HTMLElement("form")}} +- [学習: クライアント側フォーム検証](/ja/docs/Learn/Forms/Form_validation) +- [ガイド: 制約検証](/ja/docs/Web/HTML/Constraint_validation)