-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
files/ja/web/api/htmltextareaelement/willvalidate/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
title: "HTMLTextAreaElement: willValidate プロパティ" | ||
short-title: willValidate | ||
slug: Web/API/HTMLTextAreaElement/willValidate | ||
l10n: | ||
sourceCommit: 4524e28f0aa5fe3b4da3315c40bbdc8d99653da3 | ||
--- | ||
|
||
{{APIRef("HTML DOM")}} | ||
|
||
**`willValidate`** は {{domxref("HTMLTextAreaElement")}} インターフェイスの読み取り専用のプロパティで、この {{htmlelement("textarea")}} 要素が[制約検証](/ja/docs/Web/HTML/Constraint_validation)の対象であるかどうかを示します。制約検証を禁止する条件がある場合、 `false` となります。例えば、 {{domxref("HTMLTextAreaElement.disabled", "disabled")}} または {{domxref("HTMLTextAreaElement.readOnly", "readOnly")}} プロパティが `true` の場合などです。 | ||
|
||
## 値 | ||
|
||
論理値です。 | ||
|
||
## 仕様書 | ||
|
||
{{Specifications}} | ||
|
||
## ブラウザーの互換性 | ||
|
||
{{Compat}} | ||
|
||
## 関連情報 | ||
|
||
- {{domxref("HTMLTextAreaElement.checkValidity()")}} | ||
- {{HTMLElement("textarea")}} | ||
- {{HTMLElement("form")}} | ||
- [学習: クライアント側フォーム検証](/ja/docs/Learn/Forms/Form_validation) | ||
- [ガイド: 制約検証](/ja/docs/Web/HTML/Constraint_validation) |