<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input type="text">
<script>
document.querySelector('input').oninput = e => e.target.value = e.target.value.replace(/\D/g, '');
</script>
</body>
</html>