묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
첫글자가 영어인지를 체크 하는 소스를 알고싶읍니다
2002.08.13 19:02
첫글자가 영어인지를 체크 하는 소스를 알고싶읍니다
if (첫글자가 영어면){
이하문 실행
이렇게 해봤는대 안돼내요
if (<script> startChar.indexOf(temp) != "-1"</script>){
if (첫글자가 영어면){
이하문 실행
이렇게 해봤는대 안돼내요
if (<script> startChar.indexOf(temp) != "-1"</script>){
if (/[a-zA-Z]/.test("테스트할 글자".charAt(0))) {
}