$("#sbmit").click(function(){
$(":text[name^='1stfld']").each(function(i, laman){
var $current = $(this);
$('input[name^="1stfld"]').each(function() {
if ($(this).val() == $current.val() && $(this).attr('id') != $current.attr('id')) {
alert('Duplicate Found!');
$(this).addClass("xrequired");
return false;
}else{
$(laman).removeClass("xrequired");
}
});
if ($(this).val() == "") {
alert("wala");
$(laman).addClass("xrequired");
$(laman).focus();
return false;
}else{
$(laman).removeClass("xrequired");
}
$("#form").submit();
});
Как я могу оптимизировать это?