원포인트 검증【버전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);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
acer e4w charge usb 검증acer e4w라는 액티브 셔터 3D 글라스를 샀지만 아무래도 충전 규격이 특수하고 평형 8 핀 USB의 단순한 충전용이 아닌 케이블을 사용하고 있는 것 같기 때문에, 산하야트 USB용 변환 기판 CK-39를 구입해...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.