diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-12-19 03:04:18 +0900 |
---|---|---|
committer | potappo <potappo@gmail.com> | 2021-12-20 00:53:05 +0900 |
commit | 2b26ab4ac6ce73735d49f2fdf12a74080a9e35b1 (patch) | |
tree | 8e142783246d39696433ab0f9d7a588536481ff8 /files/ja/web | |
parent | 80da2aa0011703fd998b313031a7005d56fecada (diff) | |
download | translated-content-2b26ab4ac6ce73735d49f2fdf12a74080a9e35b1.tar.gz translated-content-2b26ab4ac6ce73735d49f2fdf12a74080a9e35b1.tar.bz2 translated-content-2b26ab4ac6ce73735d49f2fdf12a74080a9e35b1.zip |
Update files/ja/web/api/validitystate/stepmismatch/index.md
Co-authored-by: potappo <potappo@gmail.com>
Diffstat (limited to 'files/ja/web')
-rw-r--r-- | files/ja/web/api/validitystate/stepmismatch/index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/api/validitystate/stepmismatch/index.md b/files/ja/web/api/validitystate/stepmismatch/index.md index d408e26b25..0b0aad6529 100644 --- a/files/ja/web/api/validitystate/stepmismatch/index.md +++ b/files/ja/web/api/validitystate/stepmismatch/index.md @@ -12,7 +12,7 @@ translation_of: Web/API/ValidityState/stepMismatch --- **`stepMismatch`** は **[`ValidityState`](/ja/docs/Web/API/ValidityState)** オブジェクトの読み取り専用プロパティで、 {{HTMLElement("input")}} の値がユーザーに変更された後、その要素の `step` 属性に設定された制約に適合しないことを示します。 -フィールドが数値の性質を持つ場合、例えば {{HTMLElement("input/date", "date")}}, {{HTMLElement("input/month", "month")}}, {{HTMLElement("input/week", "week")}}, {{HTMLElement("input/time", "time")}}, {{HTMLElement("input/datetime-local", "datetime-local")}}, {{HTMLElement("input/number", "number")}}, {{HTMLElement("input/range", "range")}} の何れかの型であり、 step の値が `any` ではなく、値がe [`step`](/ja/docs/Web/HTML/Attributes/step) と [`min`](/ja/docs/Web/HTML/Attributes/min) の値に設定された制約に適合しない場合に、 `stepMismatch` が true になります。フォームコントロールの値から [`min`](/ja/docs/Web/HTML/Attributes/min) の値を引き、 [`step`](/ja/docs/Web/HTML/Attributes/step) 値 (省略時は既定で 1) がゼロでない場合、一致しないと言えます。 +フィールドが数値の性質を持つ場合、例えば {{HTMLElement("input/date", "date")}}, {{HTMLElement("input/month", "month")}}, {{HTMLElement("input/week", "week")}}, {{HTMLElement("input/time", "time")}}, {{HTMLElement("input/datetime-local", "datetime-local")}}, {{HTMLElement("input/number", "number")}}, {{HTMLElement("input/range", "range")}} の何れかの型であり、 step の値が `any` ではなく、値が [`step`](/ja/docs/Web/HTML/Attributes/step) と [`min`](/ja/docs/Web/HTML/Attributes/min) の値に設定された制約に適合しない場合に、 `stepMismatch` が true になります。フォームコントロールの値から [`min`](/ja/docs/Web/HTML/Attributes/min) の値を引き、 [`step`](/ja/docs/Web/HTML/Attributes/step) 値 (省略時は既定で 1) がゼロでない場合、一致しないと言えます。 次のようになっていたとします。 |