회원가입 아이디 영문만.

function id_check(obj)
{
var login_id = obj.value;
var ascii, i;

if (login_id == "")
{
return false;
}

for (i=0;i < login_id.length ;i++)
{
ascii = login_id.charCodeAt(i);
if ((i==0) && ((ascii < 65) || (ascii > 122)))
{
alert("첫 글자는 영문자만 가능합니다.");
obj.focus();
return false;
}
else if (ascii > 122)
{
alert("한글을 비롯한 특수문자는 사용할 수 없습니다.");
obj.focus();
return false;
}
}

if (login_id.length <= 3)
{
alert("ID는 4자 이상이어야 합니다.");
obj.focus();
return false;
}
return true;
}
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2004/12/14 13:44 2004/12/14 13:44
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/59

Trackback URL : http://tcbs17.cafe24.com/tc/trackback/59

« Previous : 1 : ... 243 : 244 : 245 : 246 : 247 : 248 : 249 : 250 : 251 : ... 324 : Next »

블로그 이미지

- 홍반장

Archives

Recent Comments

  1. 1 pHqghUme 01/05
  2. 1 pHqghUme 01/05
  3. 1 pHqghUme 01/05
  4. 1 pHqghUme 01/05
  5. 1 pHqghUme 01/05

Calendar

«   2025/12   »
  1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31      
Statistics Graph

Site Stats

Total hits:
330779
Today:
51
Yesterday:
244