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 |
---|