我想限制用户输入负值。我正在使用 min = "0"。有了这个,我可以限制用户递减到 0,即用户只能递减值到 0。但他们可以输入“-”。如何防止react js。
https://codesandbox.io/s/react-input-example-forked-xnvxm?file=/src/index.js
<input
type="number"
min="0"
step="1"
onChange={this.handleChange}
className="w-100"
value= "1"
/>