-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
47 additions
and
0 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
files/ja/web/api/htmlinputelement/validationmessage/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,47 @@ | ||
--- | ||
title: "HTMLInputElement: validationMessage プロパティ" | ||
short-title: validationMessage | ||
slug: Web/API/HTMLInputElement/validationMessage | ||
l10n: | ||
sourceCommit: 7c9ce43e847882874a25590bdde696ebc26d9797 | ||
--- | ||
|
||
{{APIRef("HTML DOM")}} | ||
|
||
**`validationMessage`** は {{domxref("HTMLInputElement")}} インターフェイスの読み取り専用プロパティで、{{htmlelement("select")}} コントロールが満たさない(もしあれば)検証制約を記述したローカライズされたメッセージを表す文字列を返します。 | ||
|
||
この `<input>` 要素が制約検証の対象ではない場合({{domxref("HTMLInputElement.willValidate")}} が `false` の場合)、または制約を満たしている場合は空文字列 (`""`) となります。 | ||
|
||
もし、この要素が制約の検証対象(`willValidate` が `true`)であり、制約が満たされていない場合({{domxref("HTMLInputElement.validity")}} オブジェクトの `valid` プロパティが `false`)、値は検証中にユーザーに表示されるエラーメッセージとなります。 | ||
|
||
## 値 | ||
|
||
文字列です。 | ||
|
||
## 例 | ||
|
||
```js | ||
const input = document.getElementById("myInput"); | ||
const errorMessage = input.validationMessage; | ||
``` | ||
|
||
## 仕様書 | ||
|
||
{{Specifications}} | ||
|
||
## ブラウザーの互換性 | ||
|
||
{{Compat}} | ||
|
||
## 関連情報 | ||
|
||
- {{HTMLelement("input")}} | ||
- {{domxref("HTMLInputElement")}} | ||
- {{domxref("HTMLInputElement.willValidate")}} | ||
- {{domxref("HTMLInputElement.validity")}} | ||
- {{domxref("HTMLInputElement.checkValidity()")}} | ||
- {{domxref("HTMLInputElement.reportValidity()")}} | ||
- {{domxref("HTMLInputElement.setCustomValidity()")}} | ||
- [学習: クライアント側フォーム検証](/ja/docs/Learn/Forms/Form_validation) | ||
- [ガイド: 制約検証](/ja/docs/Web/HTML/Constraint_validation) | ||
- CSS {{cssxref(":valid")}} および {{cssxref(":invalid")}} 擬似クラス |