'2024/02'에 해당되는 글 1건

  1. 2024.02.27 id 형식 정규식 체크
JavaScript2024. 2. 27. 11:15

id 형식 정규식 체크이다.

 

<html>
...
<input type="text" id="userId"/>
...
</html> 

<script>
...
if (!new RegExp(/^[a-z]+[a-z0-9]{5,11}$/g).test($("#userId").val())) {
 // id 형식에 맞지않음
} else {
 // 통과
}
...
</script>

 

 

 

 

 

Posted by 사슴영혼'-'