Answer the question
In order to leave comments, you need to log in
TextField input number + - e?
There is a material ui text field, it only needs to enter numbers, but in a numeric input, you can also enter + - and e, what are the ways to avoid entering + , - , and e ?
<TextField
variant="outlined"
fullWidth
type="number"
size="small"
value={amount || ''}
label="Enter Amount"
onChange={e => handleChangeAmount(e.target.value)}
/>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question