From 7ada3c8076466f01b541b8ee306db875bad29739 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 19 Oct 2024 22:06:08 +0900 Subject: [PATCH] =?UTF-8?q?2024/08/29=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 --- .../ja/web/api/htmlinputelement/step/index.md | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 files/ja/web/api/htmlinputelement/step/index.md diff --git a/files/ja/web/api/htmlinputelement/step/index.md b/files/ja/web/api/htmlinputelement/step/index.md new file mode 100644 index 00000000000000..cb1f58dc8273da --- /dev/null +++ b/files/ja/web/api/htmlinputelement/step/index.md @@ -0,0 +1,38 @@ +--- +title: "HTMLInputElement: step プロパティ" +short-title: step +slug: Web/API/HTMLInputElement/step +l10n: + sourceCommit: bc141099823c9ae2e46f560ac674be2bc4118351 +--- + +{{ApiRef("HTML DOM")}} + +**`step`** は {{domxref("HTMLInputElement")}} インターフェイスのプロパティで、数値または日付時刻の {{HTMLElement("input")}} 要素が変更できる刻みを示します。これは、要素の [`step`](/ja/docs/Web/HTML/Element/input#step) 属性を反映します。有効な値は、文字列 `"any"` または正の浮動小数点数の入った文字列です。属性が明示的に設定されていない場合、`step` プロパティは空文字列となります。 + +## 値 + +要素の `step` 値を表す文字列、または刻みが明示的に設定されていない場合は空文字列。 + +## 例 + +```js +const inputElement = document.querySelector('[type="number"]'); +console.log(inputElement.step); // step 属性の現在の値 +inputElement.step = 0.1; // step 値を "0.1" に設定 +inputElement.step = "any"; // step を "any" に設定 +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{HTMLElement("input")}} の {{HTMLElement("input/range", "range")}}, {{HTMLElement("input/number", "number")}}, {{HTMLElement("input/date", "date")}}, {{HTMLElement("input/month", "month")}}, {{HTMLElement("input/week", "week")}}, {{HTMLElement("input/time", "time")}} 型 +- {{domxref("HTMLInputElement.value")}} +- {{domxref("HTMLInputElement.type")}}