function GetOnlyNumeric(ths){
var anum=/(^\d+$)|(^\d+\.\d+$)/
if (anum.test(ths.value) || ths.value == ""){}
else{
alert("숫자만 입력하세요.")
ths.value = ""
ths.focus();
}
}
function GetOnlyNumEng(ths){
var NumEng = /^[A-Za-z0-9]+$/;
if(NumEng.test(ths.value) || ths.value == ""){}
else{
alert("숫자와 영문자만 입력하세요.");
ths.value = "";
ths.focus();
}
}
//--- 한글은 2바이트로 그 외는 1바이트로 글자수 계산.( 한글만)
String.prototype.CalByteHN = function()
{
var self = this;
if (Boolean(self))
{
var strLen = self.length || 0;
var totByteHN = 0;
for (var i=0; i
totByteHN += (4 < escape(self.charAt(i)).length)? 1 : 0;
}
return totByteHN;
}
}
//--- 한글은 2바이트로 그 외는 1바이트로 글자수 계산.( 한글외 )
String.prototype.CalByte = function()
{
var self = this;
if (Boolean(self))
{
var strLen = self.length || 0;
var totByte = 0;
for (var i=0; i
totByte += (4 < escape(self.charAt(i)).length)? 2 : 1;
}
return totByte;
}
}
//--- 공백 제거
function ignoreSpaces(string){
var temp = "";
string = '' + string;
splitstring = string.split(" ");
for(i = 0; i < splitstring.length; i++)
temp += splitstring[i];
return temp;
}
Posted by 홍반장