본 글의 예시에서는 ID번호를 기준으로 생년월일을 자동으로 생성하는 js 코드에 대해 설명하고 있으니 참고하시기 바랍니다
작업 렌더링:
<!doctype> <html> <head> <script type="text/javascript"> function dealCard(){ var birthday=getBirthday(); switch(birthday){ case 0:alert("Sorry,the program runs wrong!");break; case 1:alert("You must be input again!");break; default: alert("the birthday is"+birthday);break; } } function getBirthday(){ var a=document.getElementById("card").value; if(15==a.length || 18==a.length){ var left=a.length-12; var right=a.length-4; var b=a.slice(left,right); if(8==b.length){ return b; } else return 0; } else return 1; } </script> </head> <body> input <input type="text" id="card" height=20px width=40px/> <br/> <button type="button" onclick="dealCard()">please click it</button> </body> </html>
코드를 직접 복사해서 실행해보세요!
이 기사가 JavaScript 프로그래밍을 배우는 모든 사람에게 도움이 되기를 바랍니다.