원포인트 검증【버전2】

2432 단어 검증
function validate() {
	var personName=document.getElementById("personName").value; // 
	var sex=document.getElementById("sex").value;     //  
	var email=document.getElementById("email").value; //E-mail 
	
	if(isEmpty(personName)){
		alert("【 】 !");
		return false;
	}
	if(isEmpty(sex)){
		alert(" 【 】!");
		return false;
	} 
	if(!isEmail(email)){
		alert("【E-mail】 !");
		return false;
	} 
	return true;
} 


// 
function isEmpty(s) {
	alert();
	var lll=trim(s);
	if( lll == null || lll.length == 0 )
		return true;
	else
		return false;
}
 
function ltrim(str) { 
	if(str.length==0)
		return(str);
	else {
		var idx=0;
		while(str.charAt(idx).search(/\s/)==0)
			idx++;
		return(str.substr(idx));
	}
} 

function rtrim(str) { 
	if(str.length==0)
		return(str);
	else {
		var idx=str.length-1;
		while(str.charAt(idx).search(/\s/)==0)
			idx--;
		return(str.substring(0,idx+1));
	}
}
 
function trim(str) {  
	return(rtrim(ltrim(str)));
}

/* */
function compareDate(date1, date2) {
	if (trim(date1) == trim(date2))  	
		return 0;
	if (trim(date1) > trim(date2))  	
		return 1;
	if (trim(date1) < trim(date2))  	
		return -1;
}
 
function isEmail(eml) {
	if(trim(eml)!='') {
	  var re=new RegExp("@[\\w]+(\\.[\\w]+)+$");
	  return(re.test(eml));
	}
	else
	  return(true);
}

// 
function isTel(tel) {
	var charcode;
	for (var i=0; i<tel.length; i++)	
	{
		charcode = tel.charCodeAt(i);
		if (charcode < 48 && charcode != 45 || charcode > 57)	
			return false;
	}
	return true;
}

// 
function isnumber(num) {
	var re=new RegExp("^-?[\\d]*\\.?[\\d]*$");
	if(re.test(num))
		return(!isNaN(parseFloat(num)));
	else
		return(false);
}

// 
function isInteger(num)	{ 
	var re=new RegExp("^-?[\\d]*$");
	if(re.test(num))
		return(!isNaN(parseInt(num)));
	else
		return(false);
}

좋은 웹페이지 즐겨찾기