[ Web Proxy ]
URL:
Viewing: https://developer.mozilla.org/ja/docs/Web/API/HTMLInputElement/step [Back]  [Original]

HTMLInputElement: step - Web API | MDN

MDN Web Docs

View in English Always switch to English

HTMLInputElement: step

Baseline

20157

step HTMLInputElement <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" 

HTML
# dom-input-step


Web Proxy Viewer  |  New URL  |  Original Page