入力があり、ユーザーが入力せずに入力を終了した場合にエラークラスを追加したいと考えています。
これは私のコードです:
<input type="text" value="" id="LastName" class="text" name="LastName">
今まで私はこれを考えていましたが、それを適用する方法が本当にわかりません:
.blur(function() { if ($(this)[0].value == '') { $(this).addClass("error") } });