336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

The implementation MUST support at least the use of the following characters in file names:

- Letters (azAZ) - Numbers (0-9) - White spaces - Underscores ("_") - Hyphens ("-") - Dots (".")

 function validateFileName(fileName){
    var validReg=/^[\w- |.]*$/;
   
    return validReg.test(fileName);
}

- 응용을 해서 파일 이름에 '/' 가 지원 되도록 하는 스크립트 (즉 경로도 인정을 하겠다는 의미)
 function validateFileName(fileName){
 
 if (fileName.length == 0) {
  return false;
 }
 
    var validReg=/^[\w- |. |\/]*$/;
   
    return validReg.test(fileName);
}

'ⓟrogramming > Java script' 카테고리의 다른 글

CoolClock - The Javascript Analog Clock  (0) 2011.02.10
블로그 이미지

뚱땡이 우주인

,