JSFiddle - React, Tailwind, and code Playground

by apoucoz

HTML

<input style="font:11px arial,sans-serif;" type="text" onkeyup="return isNumberKey(this)" id="user_p_waves" value="3" maxlength="2" size="3">

JavaScript

// Проверка на пустое поле
function isNumberKey(id) {
    if (parseInt(id.value.length) < 1) {
        // Выдаст ошибку
        id.setAttribute('style','background-color:#ffaaaa');
        return false;
    }
    // Всё в порядке
    id.setAttribute('style','background-color:#fff');
    return false;
}