2024-10-11 10:00 이메일 허용 문자 추가 -
This commit is contained in:
parent
94a5c8835c
commit
ce87142369
@ -350,7 +350,11 @@ function onlyNumber(thisObj) {
|
||||
}
|
||||
|
||||
function onlyAlphabetNumber(thisObj) {
|
||||
thisObj.value = thisObj.value.replace(/[^0-9a-zA-Z\._]/gi, "");
|
||||
thisObj.value = thisObj.value.replace(/[^0-9a-zA-Z\-._]/gi, "");
|
||||
}
|
||||
|
||||
function onlyAlphabetNumber2(thisObj) {
|
||||
thisObj.value = thisObj.value.replace(/[^0-9a-zA-Z\-._]/gi, "");
|
||||
}
|
||||
|
||||
function getChkLen(name) {
|
||||
|
||||
@ -372,7 +372,7 @@ function onlyNumber(thisObj) {
|
||||
}
|
||||
|
||||
function onlyAlphabetNumber(thisObj) {
|
||||
thisObj.value = thisObj.value.replace(/[^0-9a-zA-Z\._]/gi, "");
|
||||
thisObj.value = thisObj.value.replace(/[^0-9a-zA-Z\-._]/gi, "");
|
||||
}
|
||||
|
||||
function getChkLen(name) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user