Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
因此,如果有人输入 1.00,它将自动格式化为 1.0000。这是内置在 HTML 5 中的数字输入中吗?
我不知道内置在 HTML 中的方法。
但是,在 JavaScript 中很容易做到。
element.addEventListener('change', function() { var value = +this.value; if (value === value) this.value = value.toFixed(4); }, false);