我使用以下函数执行验证:
//Validation
$('.sValidate').bind('blur', function() {
if (!$(this).val()) {
$(this).removeClass('short_input');
$(this).addClass('short_input_negative');
return false;
}
});
我的大部分输入类都是short_input
. 但其中一些也被命名为long_input
.
我怎么知道input
触发了的类blur
,删除它然后添加long_input_negative
?
<input type="text" id="loginname" name="loginname" class="short_input sValidate" value="JDoe">