You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
function checkNum(str, num) { |
|
if(num.search("2") != -1) { |
|
if(isNaN(str.value) || str.value == '' || str.value == ' '){ |
|
alert(str.value+"는 문자 또는 공백입니다. \n 숫자를 입력하세요. "); |
|
str.value=0; |
|
str.focus(); |
|
} |
|
} |
|
}
|
|
|