Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTMLInputElement 以下の誤記を修正 #24247

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ l10n:

{{APIRef("HTML DOM")}}

**`validationMessage`** は {{domxref("HTMLInputElement")}} インターフェイスの読み取り専用プロパティで、{{htmlelement("select")}} コントロールが満たさない(もしあれば)検証制約を記述したローカライズされたメッセージを表す文字列を返します
**`validationMessage`** は {{domxref("HTMLInputElement")}} インターフェイスの読み取り専用プロパティで、(もしあれば)この {{htmlelement("input")}} コントロールが満たしていない検証制約を記述したローカライズされたメッセージを表す文字列を返します

この `<input>` 要素が制約検証の対象ではない場合({{domxref("HTMLInputElement.willValidate")}} が `false` の場合)、または制約を満たしている場合は空文字列 (`""`) となります。

Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/htmlinputelement/validity/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ l10n:

{{APIRef("HTML DOM")}}

**`validity`** は {{domxref("HTMLInputElement")}} インターフェイスの読み取り専用プロパティは、この要素の有効状態を表す {{domxref("ValidityState")}} オブジェクトを返します。
**`validity`** は {{domxref("HTMLInputElement")}} インターフェイスの読み取り専用プロパティで、この要素の有効状態を表す {{domxref("ValidityState")}} オブジェクトを返します。

## 値

Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/htmlinputelement/willvalidate/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ l10n:

{{APIRef("HTML DOM")}}

**`willValidate`** は {{domxref("HTMLInputElement")}} インターフェイスの読み取り専用のプロパティで、この {{htmlelement("input")}} 要素が[制約検証](/ja/docs/Web/HTML/Constraint_validation)の対象となる候補であるかどうかを示します。制約の検証を禁止する条件のいずれかに該当する場合、`false` となります。条件には次のようなものがあります。
**`willValidate`** は {{domxref("HTMLInputElement")}} インターフェイスの読み取り専用のプロパティで、この {{htmlelement("input")}} 要素が[制約検証](/ja/docs/Web/HTML/Constraint_validation)の対象であるかどうかを示します。制約の検証を禁止する条件のいずれかに該当する場合、`false` となります。条件には次のようなものがあります。

- {{domxref("HTMLInputElement.type", "type")}} が `hidden`、`reset`、`button` のいずれかである
- 祖先に {{HTMLElement("datalist")}} がある
Expand Down