-2
$("#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();
});
これをどのように最適化できますか?提出時に有効にする
私はまだコードをトレースできるようにカスタムビルドをお勧めします。 – reign
@ user504095 - あなたはそれをなぜ好きですか?保守が容易ではない(メンテナンスが容易ではありません)、プロジェクトが成長するにつれて大きな頭痛を覚えています。 –
どうすれば私のコードに移植できますか? – reign