我有多个input
具有不同值的字段.我可以编辑它们但不能为空(如果空显示警报).当我将其编辑为新值时,如果新值与任何其他输入值匹配,我需要一个不能使用它的警报.
HTML
JavaScript的
$('.selector').change(function () { alert(); });
在这里小提琴
更新小提琴.
您可以$(this).attr('value', $(this).val());
先使用刷新值属性,然后selector
使用值选择器检查是否有任何其他具有类的字段具有相同的值$('.selector[value="' + current_value + '"]').length
.
希望这可以帮助.
$('body').on('blur', '.selector', function () {
$(this).attr('value', $(this).val());
if ($('.selector[value="' + $(this).val() + '"]').length > 1 ) {
$(this).focus();
alert('You cannot use this');
}else if($(this).val().length == 0) {
alert('Empty value not accepted');
}
});