Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<input type="text" onKeyPress={(e) => validation(e)} />
const validation = (e) => { let input = e.target.value; input = input.replace(/[A-Za-z]/, ''); };
e.target.value = input
let input = e.target.value; input = input.replace(/[A-Za-z]/, '');
const validation = (e) => e.target.value = input.replace(/[A-Za-z]/g, ''); <input type="text" onChange={validation} />