|
|
|
03-07-26
|
조회 642
|
|
|
|
03-07-26
|
조회 549
|
|
|
|
03-07-26
|
조회 597
|
|
|
|
03-07-25
|
조회 615
|
|
|
|
03-07-25
|
조회 448
|
|
|
|
03-07-25
|
조회 692
|
|
|
|
03-07-25
|
조회 549
|
|
|
|
03-07-25
|
조회 610
|
|
|
|
03-07-25
|
조회 590
|
|
|
|
03-07-25
|
조회 652
|
|
|
|
03-07-25
|
조회 684
|
|
|
|
03-07-25
|
조회 620
|
|
|
|
03-07-25
|
조회 554
|
|
|
|
03-07-24
|
조회 581
|
|
|
|
03-07-24
|
조회 714
|
|
|
|
03-07-24
|
조회 711
|
|
|
|
03-07-24
|
조회 698
|
|
|
|
03-07-24
|
조회 594
|
|
|
|
03-07-24
|
조회 779
|
|
|
|
03-07-24
|
조회 589
|
댓글 5개
그리고 꼬부랑말인가는 "영문인가"로 고쳐쓰심이 어떠하실지...
그리고 그것은 바라지도 않았는데 제이름을 남겨 주시다니 감사함니다.^^
// 꼬부랑말인가 검사
// 배부른꿀꿀이님 추가 (http://dasir.com) 2003-06-24
function wrestAlpha(fld)
{
if (!wrestTrim(fld)) return;
var pattern = /(^[a-zA-Z]+$)/;
if (!pattern.test(fld.value)) {
if (wrestFld == null) {
wrestMsg = wrestItemname(fld) + " : 영문이 아닙니다.\n";
wrestFld = fld;
}
}
}
// 영문자와 숫자 검사
// 배부른꿀꿀이님 추가 (http://dasir.com) 2003-07-07
function wrestAlphaNumeric(fld)
{
if (!wrestTrim(fld)) return;
var pattern = /(^[a-zA-Z0-9]+$)/;
if (!pattern.test(fld.value)) {
if (wrestFld == null) {
wrestMsg = wrestItemname(fld) + " : 영문 또는 숫자가 아닙니다.\n";
wrestFld = fld;
}
}
}