G 에디트에서 required 무시하고 넘기네요 정보
G 에디트에서 required 무시하고 넘기네요
본문
댓글 전체

js/wrest.js 파일의 아래 코드를
if (wrestFld != null)
{
alert(wrestMsg);
wrestFld.style.backgroundColor = wrestFldBackColor;
wrestFld.focus();
return false;
}
아래의 코드로 변경하여 사용하시기 바랍니다.
if (wrestFld != null)
{
alert(wrestMsg);
if (wrestFld.style.display != 'none')
{
wrestFld.style.backgroundColor = wrestFldBackColor;
wrestFld.focus();
}
return false;
}
if (wrestFld != null)
{
alert(wrestMsg);
wrestFld.style.backgroundColor = wrestFldBackColor;
wrestFld.focus();
return false;
}
아래의 코드로 변경하여 사용하시기 바랍니다.
if (wrestFld != null)
{
alert(wrestMsg);
if (wrestFld.style.display != 'none')
{
wrestFld.style.backgroundColor = wrestFldBackColor;
wrestFld.focus();
}
return false;
}

잘 되요 =b
